Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
abf755615e5f20c3bbe7534fa29c72fd684ea616
/
.
/
shell
/
ash_test
/
ash-misc
/
until1.tests
blob: 10ab28381cb1854c15199566deb2d667cf47d6a0 [
file
] [
log
] [
blame
]
Denys Vlasenko
a62bc80
2016-10-03 00:06:55 +0200
[
diff
] [
blame
]
1
x
=
1
2
until
test
"$x"
=
4
;
do
echo $x
;
x
=
4
;
done
3
4
# We had a bug in multi-line form
5
x
=
1
6
until
test
"$x"
=
4
;
do
7
echo $x
8
x
=
4
9
done
10
11
echo
Ok
:
$
?