Sign in
nest-open-source
/
nest-learning-thermostat
/
5.0.2
/
busybox
/
refs/heads/master
/
.
/
busybox-1.19.3
/
shell
/
hush_test
/
hush-misc
/
break4.tests
blob: 67da2889ced68e552ca7588d25a3462c29da00af [
file
] [
log
] [
blame
] [
edit
]
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
:
$
?