Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (hide annotations) (download)
Sun May 30 11:32:42 2010 UTC (14 years ago) by niro
File size: 274 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 niro 984 test "$CONFIG_FEATURE_FANCY_ECHO" = "y" || exit 77
2    
3 niro 816 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:$?