diff options
author | Jim Meyering <jim@meyering.net> | 2000-05-03 11:09:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-05-03 11:09:07 +0000 |
commit | c2262fcd90ce9ffaee62972b28c61b59f1d21d10 (patch) | |
tree | 5073b816a138c1586d48480a428cdbf18cade444 /tests/rm | |
parent | 93e3e3a5a8297e4f902035f481e9dd811714323d (diff) | |
download | coreutils-c2262fcd90ce9ffaee62972b28c61b59f1d21d10.tar.xz |
use rm, not $RM
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/r-2 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/rm/r-2 b/tests/rm/r-2 index 2bba1f5c6..fcb83fd27 100755 --- a/tests/rm/r-2 +++ b/tests/rm/r-2 @@ -1,12 +1,11 @@ #!/bin/sh -: ${RM=rm} test=r-2 : ${TMPDIR=.} if test "$VERBOSE" = yes; then - $RM --version + rm --version set -x fi @@ -34,7 +33,7 @@ EOF # Note that both the expected output (above) and the actual output lines # are sorted, because directory entries may be processed in arbitrary order. fail=0 -$RM --verbose -r $tmp/a | sort > $tmp/$test.O || fail=1 +rm --verbose -r $tmp/a | sort > $tmp/$test.O || fail=1 if test -d $tmp/a; then fail=1 |