commit bash-20140327 snapshot

This commit is contained in:
Chet Ramey
2014-04-07 10:47:09 -04:00
parent e2f12fdf57
commit c28fcb7eb4
31 changed files with 30785 additions and 1096 deletions
+8
View File
@@ -92,3 +92,11 @@ a ab
a ab
a ab
a
. ..
. .. a.log
a.log
?(foo)
a.log
a.log
. ..
a.log
+2
View File
@@ -370,4 +370,6 @@ ${THIS_SH} ./extglob1.sub
${THIS_SH} ./extglob1a.sub
${THIS_SH} ./extglob3.sub
exit 0
+21
View File
@@ -0,0 +1,21 @@
shopt -s extglob
DIR=/tmp/extglob-$$
mkdir $DIR
cd $DIR
touch a.log
echo *(.)
echo *(.)*
echo ?(foo)*
echo ?(foo)
echo *(foo)*
echo @(|foo)*
echo *(foo).*
echo !(foo)*
cd $OLDPWD
rm -rf $DIR