nt9856x/BSP/busybox/shell/ash_test/ash-misc/until1.tests
2023-03-28 15:07:53 +08: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:$?