1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

don't use touch

This commit is contained in:
Jim Meyering
1997-11-03 04:50:11 +00:00
parent f2ddecd375
commit 3f3c12d723
+2 -2
View File
@@ -22,8 +22,8 @@ n=300
i=$a
echo "creating $n files in $tmp..."
while :; do
touch $tmp/$i || framework_fail=1
test `expr $i = $n` = 1 && break
> $tmp/$i || framework_fail=1
test $i = $n && break
i=`expr $i + 1`
done