Bash-4.3 distribution sources and documentation

This commit is contained in:
Chet Ramey
2014-02-26 09:36:43 -05:00
parent 4539d736f1
commit ac50fbac37
497 changed files with 129394 additions and 87597 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