mirror of
https://github.com/sheumann/hush.git
synced 2024-11-18 17:10:36 +00:00
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
|