hush/shell/hush_test/hush-misc/nommu2.tests

6 lines
220 B
Plaintext
Raw Normal View History

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