mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
12 lines
197 B
Text
Executable file
12 lines
197 B
Text
Executable file
cond=true
|
|
while $cond; do
|
|
echo A
|
|
if test "$cond" = true; then
|
|
cond='echo TRUE'
|
|
else
|
|
cond=false
|
|
fi
|
|
while true; do echo AA; continue 2; echo BB; done
|
|
echo B
|
|
done
|
|
echo OK:$?
|