12 lines
155 B
Plaintext
Executable File
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:$?
|