mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-03 18:30:49 +02:00
Bash-4.3 distribution sources and documentation
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
shopt -s extglob
|
||||
|
||||
TESTDIR=${TMPDIR:-/tmp}/eglob-test-$$
|
||||
mkdir $TESTDIR
|
||||
builtin cd $TESTDIR || { echo $0: cannot cd to $TESTDIR >&2 ; exit 1; }
|
||||
rm -rf *
|
||||
|
||||
touch a ab ba
|
||||
|
||||
echo a*!(x)
|
||||
echo a!(x)
|
||||
echo a*?(x)
|
||||
echo a?(x)
|
||||
|
||||
builtin cd /
|
||||
rm -rf $TESTDIR
|
||||
Reference in New Issue
Block a user