diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-14 06:24:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-14 06:24:43 +0000 |
commit | 6fb0b1d366be6c3563bf0a1d863f3551b8f359ab (patch) | |
tree | 19eb546391ddc1686d613d6af2fbc4dc13282326 /tests/rm/rm3 | |
parent | a9335b4704cc4e9e81f8c658c2b93650fbc9e475 (diff) | |
download | coreutils-6fb0b1d366be6c3563bf0a1d863f3551b8f359ab.tar.xz |
Use tr's \n notation rather than \012.
Diffstat (limited to 'tests/rm/rm3')
-rwxr-xr-x | tests/rm/rm3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/rm3 b/tests/rm/rm3 index d0a87d8cc..018c4ae66 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 <<EOF > exp || fail=1 |