mirror of
https://github.com/sheumann/hush.git
synced 2025-01-10 16:29:44 +00:00
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
|
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:$?
|