echo: don't mangle backslashes for file printing

This commit is contained in:
Lyndon Brown 2020-03-07 05:57:15 +00:00 committed by Raphaël Hertzog
parent 8545c048c6
commit a6c4094cf0
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ Echo_warning ()
Echo_file ()
{
while read LINE
while read -r LINE
do
echo "${1}: ${LINE}" >&1
done < "${1}"