busybox/shell/hush_test/hush-psubst/tick3.tests
2008-06-10 22:39:37 +00:00

12 lines
232 B
Bash
Executable File

#!/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:$?