mirror of
https://github.com/sheumann/hush.git
synced 2024-10-29 20:27:40 +00:00
7 lines
104 B
Plaintext
7 lines
104 B
Plaintext
|
while true; do
|
||
|
echo A
|
||
|
while true; do echo AA; break 2; echo BB; done
|
||
|
echo B
|
||
|
done
|
||
|
echo OK:$?
|