Sign in
nest-open-source
/
nest-learning-thermostat
/
5.1.6
/
busybox
/
b2cf790ce23df9cace07ab4486c11f983c120d3d
/
.
/
busybox-1.19.3
/
shell
/
hush_test
/
hush-misc
/
until1.tests
blob: 10ab28381cb1854c15199566deb2d667cf47d6a0 [
file
] [
log
] [
blame
]
x
=
1
until
test
"$x"
=
4
;
do
echo $x
;
x
=
4
;
done
# We had a bug in multi-line form
x
=
1
until
test
"$x"
=
4
;
do
echo $x
x
=
4
done
echo
Ok
:
$
?