aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/nommu2.tests
blob: 61ed5ce5b7a7ccc994011c4a6debdb04201834f0 (plain)
1
2
3
4
5
echo Not shown | if true; then echo $(echo Ok); fi
echo Not shown | if true; then echo `echo Ok`; fi
echo Not shown | ( if true; then echo $(echo Ok); fi )
echo Not shown | ( if true; then echo `echo Ok`; fi )
echo Done