aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-glob/bash_brace1.tests
blob: eae2e2a8444476e3a97e9288e9de4213df65bdf5 (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 braces are expanded:
echo *{b,b}race1.t*

echo Done: $?