blob: 469c43c27c61c5c7a9d70b3a1e5f0f81d57f8bbc [file] [log] [blame]
Mike Frysinger327fd472009-04-09 07:50:18 +00001test "$CONFIG_FEATURE_FANCY_ECHO" = "y" || exit 77
2
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003TEST=Q
4# \` is special
5echo `echo '\'TEST\`echo ZZ\`BEST`
6# \$ and \\ are special
7echo `echo \\$TEST`
8echo `echo \$TEST`
9echo a`echo \\\\b`c
10# \" etc are NOT special (passed verbatim WITH \)!
11echo a`echo \"`c
12echo done:$?