Tomato 1.25
[tomato.git] / release / src / router / busybox / shell / hush_test / hush-misc / until1.tests
blob10ab28381cb1854c15199566deb2d667cf47d6a0
1 x=1
2 until test "$x" = 4; do echo $x; x=4; done
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
11 echo Ok:$?