Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/hush_test/hush-psubst/tick3.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (show annotations) (download)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File size: 274 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 test "$CONFIG_FEATURE_FANCY_ECHO" = "y" || exit 77
2
3 TEST=Q
4 # \` is special
5 echo `echo '\'TEST\`echo ZZ\`BEST`
6 # \$ and \\ are special
7 echo `echo \\$TEST`
8 echo `echo \$TEST`
9 echo a`echo \\\\b`c
10 # \" etc are NOT special (passed verbatim WITH \)!
11 echo a`echo \"`c
12 echo done:$?