]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
use rm, not $RM
authorJim Meyering <jim@meyering.net>
Wed, 3 May 2000 11:09:07 +0000 (11:09 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 3 May 2000 11:09:07 +0000 (11:09 +0000)
tests/rm/r-2

index 2bba1f5c6b6280125399d473b5ff69e0b09a1ca4..fcb83fd27026ba2fe9785335df1a8466a675df0a 100755 (executable)
@@ -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