read without -r will mangle backslashes.

This commit is contained in:
mrmajik45
2018-09-26 10:32:22 -04:00
committed by GitHub
parent 8684356b44
commit 00f98543ad

View File

@ -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