summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-glob/bash_brace1.tests (plain)
blob: eae2e2a8444476e3a97e9288e9de4213df65bdf5
1# unquoted $v should be globbed:
2v='*brace1.t*'; echo $v
3
4# ...but not brace expanded:
5v='*{b,b}race1.t*'; echo $v
6
7# whereas direct braces are expanded:
8echo *{b,b}race1.t*
9
10echo Done: $?
11