From: Jim Meyering Date: Wed, 14 May 2003 06:25:08 +0000 (+0000) Subject: Use tr's \n notation rather than \012. X-Git-Tag: v5.0.1~490 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=00a770a30e17ee037bff676b48390bdfff466187;p=thirdparty%2Fcoreutils.git Use tr's \n notation rather than \012. --- diff --git a/tests/rm/rm5 b/tests/rm/rm5 index fae3d31513..91715ae75b 100755 --- a/tests/rm/rm5 +++ b/tests/rm/rm5 @@ -41,7 +41,7 @@ fail=0 rm -ir d < in > out 2>&1 || fail=1 # The following loses with Tru64's sed, since that sed mistakenly # tacks a newline onto the end of the file. -tr '?' '\012' < out |sed 's/^ //' > o2 +tr '?' '\n' < out |sed 's/^ //' > o2 mv o2 out # Make sure it's been removed.