mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
|
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:$?
|