diff options
Diffstat (limited to '137')
-rwxr-xr-x | 137 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ do echo error creating/writing file $file exit fi - i=`expr $i + 1` + let i=$i+1 done # give the system a chance to write something out @@ -90,7 +90,7 @@ do rm -f $file fi fi - i=`expr $i + 1` + let i=$i+1 done status=0 |