data/method/busybox/busybox-1.36.0/shell/hush_test/hush-glob/bash_brace1.tests

11 lines
189 B
Bash
Raw Normal View History

2024-01-29 10:44:43 +08:00
# 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: $?