hush: fix a bug in argv restoration after sourcing a file
[oweals/busybox.git] / shell / hush_test / hush-misc / nommu2.tests
1 echo Not shown | if true; then echo $(echo Ok); fi
2 echo Not shown | if true; then echo `echo Ok`; fi
3 echo Not shown | ( if true; then echo $(echo Ok); fi )
4 echo Not shown | ( if true; then echo `echo Ok`; fi )
5 echo Done