mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
read without -r will mangle backslashes.
This commit is contained in:
parent
8684356b44
commit
00f98543ad
1 changed files with 1 additions and 1 deletions
|
@ -907,7 +907,7 @@ parse_file() {
|
|||
#shellcheck disable=SC2016
|
||||
IFS=$'\r\n' command eval 'file_info=( $(cat "${filename}") )'
|
||||
else
|
||||
read -a file_info <<< $filename
|
||||
read -a -r file_info <<< $filename
|
||||
fi
|
||||
# Set a named variable for better readability
|
||||
local file_lines
|
||||
|
|
Loading…
Reference in a new issue