diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-14 06:26:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-14 06:26:34 +0000 |
commit | 01d63f13e81d0623d753d6521076c79d355d1921 (patch) | |
tree | c1965f26944090986585ef48750d58fb794a7ad4 /tests/rm | |
parent | 00a770a30e17ee037bff676b48390bdfff466187 (diff) | |
download | coreutils-01d63f13e81d0623d753d6521076c79d355d1921.tar.xz |
Use tr's \n notation rather than \012.
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/deep-1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rm/deep-1 b/tests/rm/deep-1 index 21702ad0e..f653be9ba 100755 --- a/tests/rm/deep-1 +++ b/tests/rm/deep-1 @@ -31,14 +31,14 @@ k_deep=$k200$k200 # Create a directory in $tmp with lots of `k' components. deep=$tmp$k_deep -echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\012' +echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\n' mkdir -p $deep || fail=1 echo done # Make sure the deep dir was created. test -d $deep || fail=1 -echo "deleting $tmp..." |tr -d '\012' +echo "deleting $tmp..." |tr -d '\n' rm -r $tmp || fail=1 echo done |