mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
# according to Posix 2.13.3, a slash in a bracket expression renders that
|
|
# bracket expression invalid
|
|
shopt -s nullglob
|
|
|
|
echo 1: [qwe/qwe]
|
|
echo 2: [qwe/
|
|
echo 3: [qwe/]
|
|
|
|
echo 4: [qwe\/qwe]
|
|
echo 5: [qwe\/
|
|
echo 6: [qwe\/]
|