summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/elif2.tests
blob: 3e5876f05dc4c5f30cabe740d5bdc94b39af0d73 (plain)
1
2
3
4
5
6
7
8
if true; then
    echo "THEN"
elif echo "ELIF false"; false; then
    echo "ELIF THEN"
else
    echo "ELSE"
fi
echo "Ok:$?"