mirror of
https://github.com/sheumann/hush.git
synced 2025-02-13 12:31:05 +00:00
7 lines
104 B
Plaintext
Executable File
7 lines
104 B
Plaintext
Executable File
while true; do
|
|
echo A
|
|
while true; do echo AA; break 2; echo BB; done
|
|
echo B
|
|
done
|
|
echo OK:$?
|