aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-glob/bash_brace1.tests
blob: eb2f0e9746c42166759acb6dccdaafce7eae6a92 (plain)
1
2
3
4
5
6
7
8
9
10
# unquoted $v should be globbed:
v='*brace1.t*'; echo $v

# ...but not brace expanded:
v='*{b,b}race1.t*'; echo $v

# whereas direct brces are expanded:
echo *{b,b}race1.t*

echo Done: $?