From: Jim Meyering Date: Mon, 4 Sep 2000 16:58:25 +0000 (+0000) Subject: mv's --force (-f) option is no longer needed for X-Git-Tag: FILEUTILS-4_0z~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f99fca934b74a3aee31c4a9cfd1e0a7bab1f4c0;p=thirdparty%2Fcoreutils.git mv's --force (-f) option is no longer needed for this test, now that all it does is cancel --interactive (-i). --- diff --git a/tests/mv/force b/tests/mv/force index f14b6c9c55..1455ef3426 100755 --- a/tests/mv/force +++ b/tests/mv/force @@ -1,5 +1,5 @@ #!/bin/sh -# move a file onto itself with --force +# move a file onto itself if test "$VERBOSE" = yes; then set -x @@ -28,7 +28,7 @@ LANG=C export LANG # This mv command should exit nonzero. -mv --force $ff $ff > out 2>&1 && fail=1 +mv $ff $ff > out 2>&1 && fail=1 cat > exp <