mirror of
https://github.com/sheumann/hush.git
synced 2024-12-23 05:29:58 +00:00
11 lines
222 B
Plaintext
Executable File
11 lines
222 B
Plaintext
Executable File
TEST=Q
|
|
# \` is special
|
|
echo `echo '\'TEST\`echo ZZ\`BEST`
|
|
# \$ and \\ are special
|
|
echo `echo \\$TEST`
|
|
echo `echo \$TEST`
|
|
echo a`echo \\\\b`c
|
|
# \" etc are NOT special (passed verbatim WITH \)!
|
|
echo a`echo \"`c
|
|
echo done:$?
|