mirror of
https://github.com/sheumann/hush.git
synced 2025-01-11 08:29:54 +00:00
11 lines
188 B
Bash
11 lines
188 B
Bash
|
# 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: $?
|