summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-glob/bash_brace1.tests (plain)
blob: eb2f0e9746c42166759acb6dccdaafce7eae6a92
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 brces are expanded:
8echo *{b,b}race1.t*
9
10echo Done: $?
11