5 lines
220 B
Text
Executable file
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
|