i-bash/tests/extglob3.sub

22 lines
197 B
Text
Raw Normal View History

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