commit bash-20121005 snapshot

This commit is contained in:
Chet Ramey
2012-11-02 09:04:00 -04:00
parent 15be7e1e2f
commit 1562376007
44 changed files with 47536 additions and 1737 deletions
+16
View File
@@ -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