From: Jim Meyering Date: Wed, 14 May 2003 06:24:43 +0000 (+0000) Subject: Use tr's \n notation rather than \012. X-Git-Tag: v5.0.1~491 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6fb0b1d366be6c3563bf0a1d863f3551b8f359ab;p=thirdparty%2Fcoreutils.git Use tr's \n notation rather than \012. --- diff --git a/tests/rm/rm3 b/tests/rm/rm3 index d0a87d8cc3..018c4ae665 100755 --- a/tests/rm/rm3 +++ b/tests/rm/rm3 @@ -51,7 +51,7 @@ EOF rm -ir z < 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/^ //' |sort > o2 +tr '?' '\n' < out |sed 's/^ //' |sort > o2 mv o2 out sort < exp || fail=1