mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
6 lines
104 B
Text
Executable file
6 lines
104 B
Text
Executable file
while true; do
|
|
echo A
|
|
while true; do echo AA; break 2; echo BB; done
|
|
echo B
|
|
done
|
|
echo OK:$?
|