summaryrefslogtreecommitdiff
path: root/tests/du/slink
diff options
context:
space:
mode:
Diffstat (limited to 'tests/du/slink')
-rwxr-xr-xtests/du/slink2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/du/slink b/tests/du/slink
index 1f8429171..674e6a224 100755
--- a/tests/du/slink
+++ b/tests/du/slink
@@ -32,7 +32,7 @@ fi
symlink_name_lengths='1 15 16 31 32 59 60 63 64 127 128 255 256 511 512 1024'
for len in $symlink_name_lengths; do
- name=`seq 1 $len|tr -c x y |head -c$len`
+ name=$(seq 1 $len|tr -c x y |head -c$len)
# Record the names of symlinks that are successfully created.
ln -fs $name $len > /dev/null 2>&1 \
&& symlinks="$symlinks $len"