bash-5.0 distribution sources and documentation

This commit is contained in:
Chet Ramey
2019-01-07 09:27:52 -05:00
parent 6444760999
commit d233b485e8
528 changed files with 84836 additions and 67099 deletions
+5 -2
View File
@@ -1,5 +1,5 @@
shopt -s extglob
DIR=/tmp/extglob-$$
DIR=$TMPDIR/extglob-$$
mkdir $DIR
cd $DIR
@@ -7,15 +7,18 @@ touch a.log
echo *(.)
echo *(.)*
echo *(foo)
echo *(foo|bar)
echo ?(foo)*
echo ?(foo)
echo *(foo)*
echo @(|foo)*
echo *(foo).*
echo *(foo|bar).*
echo !(foo)*
echo !(foo|bar)*
cd $OLDPWD
rm -rf $DIR