mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
11 lines
155 B
Text
Executable file
11 lines
155 B
Text
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:$?
|