mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
10 lines
189 B
Bash
Executable file
10 lines
189 B
Bash
Executable file
# 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: $?
|