From a6c4094cf02fb0458cf8af204cd4abceae20c980 Mon Sep 17 00:00:00 2001 From: Lyndon Brown Date: Sat, 7 Mar 2020 05:57:15 +0000 Subject: [PATCH] echo: don't mangle backslashes for file printing --- functions/echo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/echo.sh b/functions/echo.sh index 438cfe5d6..0f04f239e 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -80,7 +80,7 @@ Echo_warning () Echo_file () { - while read LINE + while read -r LINE do echo "${1}: ${LINE}" >&1 done < "${1}"