hush: fix handling of raw ^C in scripts: "echo ^C"
[oweals/busybox.git] / shell / hush_test / hush-glob / bash_brace1.tests
1 # unquoted $v should be globbed:
2 v='*brace1.t*'; echo $v
3
4 # ...but not brace expanded:
5 v='*{b,b}race1.t*'; echo $v
6
7 # whereas direct braces are expanded:
8 echo *{b,b}race1.t*
9
10 echo Done: $?