1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-23 15:28:07 +00:00

parse array in correct location

This commit is contained in:
Jacob Salmela 2017-06-07 12:31:08 -05:00
parent 24aa72c19d
commit 048eacd305
No known key found for this signature in database
GPG Key ID: 1962FF1A5046135E

View File

@ -695,6 +695,9 @@ make_array_from_file() {
: :
fi fi
done < "${filename}" done < "${filename}"
for each_line in "${file_content[@]}"; do
log_write " ${each_line}"
done
fi fi
} }
@ -765,9 +768,6 @@ list_files_in_dir() {
log_write "\n${COL_LIGHT_GREEN}$(ls -ld ${dir_to_parse}/${each_file})${COL_NC}" log_write "\n${COL_LIGHT_GREEN}$(ls -ld ${dir_to_parse}/${each_file})${COL_NC}"
# Then, parse the file's content into an array so each line can be analyzed if need be # Then, parse the file's content into an array so each line can be analyzed if need be
make_array_from_file "${dir_to_parse}/${each_file}" make_array_from_file "${dir_to_parse}/${each_file}"
for each_line in "${file_content[@]}"; do
log_write " ${each_line}"
done
fi fi
done done
} }