aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-psubst/tick3.tests
blob: 97b45e4b425db03f640635dedaec9fe7864d1377 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
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:$?