summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-psubst/tick3.tests
blob: 469c43c27c61c5c7a9d70b3a1e5f0f81d57f8bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
test "$CONFIG_FEATURE_FANCY_ECHO" = "y" || exit 77

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:$?