summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/until1.tests (plain)
blob: 10ab28381cb1854c15199566deb2d667cf47d6a0
1x=1
2until test "$x" = 4; do echo $x; x=4; done
3
4# We had a bug in multi-line form
5x=1
6until test "$x" = 4; do
7 echo $x
8 x=4
9done
10
11echo Ok:$?
12