mirror of
https://github.com/sheumann/hush.git
synced 2025-01-20 05:30:25 +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
|