android_mt6572_jiabo/external/busybox/shell/hush_test/hush-misc/nommu2.tests
2025-09-05 16:56:03 +08:00

5 lines
220 B
Text
Executable file

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