aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/until1.tests
blob: 10ab28381cb1854c15199566deb2d667cf47d6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
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:$?