Files
busybox/shell/ash_test/ash-misc/until1.tests
2016-10-03 00:06:55 +02:00

12 lines
155 B
Plaintext
Executable File

x=1
until test "$x" = 4; do echo $x; x=4; done
# We had a bug in multi-line form
x=1
until test "$x" = 4; do
echo $x
x=4
done
echo Ok:$?