summaryrefslogtreecommitdiff
path: root/110
diff options
context:
space:
mode:
Diffstat (limited to '110')
-rwxr-xr-x1106
1 files changed, 3 insertions, 3 deletions
diff --git a/110 b/110
index c578d358..85b313c7 100755
--- a/110
+++ b/110
@@ -52,8 +52,8 @@ E=10030600
while [ $I -le $E ]
do
echo > $SCRATCH_MNT/test/${STR1}${STR2}${STR3}${I}
- I=`expr $I + 1`
- [ `expr $I % 1000` -eq 0 ] && echo "Created $I/$E"
+ let I=$I+1
+ [ $[$I % 1000] -eq 0 ] && echo "Created $I/$E"
done
sync
@@ -63,7 +63,7 @@ E=10030599
while [ $I -le $E ]
do
rm $SCRATCH_MNT/test/${STR1}${STR2}${STR3}${I} &
- I=`expr $I + 1`
+ let I=$I+1
done
_check_scratch_fs