6 lines
220 B
Plaintext
6 lines
220 B
Plaintext
|
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
|