diff options
Diffstat (limited to 'tests/mv/partition-perm')
-rwxr-xr-x | tests/mv/partition-perm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mv/partition-perm b/tests/mv/partition-perm index 65ae5d024..bbda9da7a 100755 --- a/tests/mv/partition-perm +++ b/tests/mv/partition-perm @@ -31,7 +31,7 @@ test -f file && fail=1 test -f "$other_partition_tmpdir/file" || fail=1 # This would have failed with the mv from fileutils-4.0i. -mode=`ls -l "$other_partition_tmpdir/file" | cut -b-10` +mode=$(ls -l "$other_partition_tmpdir/file" | cut -b-10) test "$mode" = "-rwxrwxrwx" || fail=1 Exit $fail |