improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / glob / extglob / extglob3.sub
blobbf5d2630d1dfc680f35fe33c3b91043815e21601
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 shopt -s extglob
15 DIR=$TMPDIR/extglob-$$
16 mkdir $DIR
17 cd $DIR
19 touch a.log
21 echo *(.)
22 echo *(.)*
23 echo *(foo)
24 echo *(foo|bar)
25 echo ?(foo)*
26 echo ?(foo)
27 echo *(foo)*
28 echo @(|foo)*
30 echo *(foo).*
31 echo *(foo|bar).*
33 echo !(foo)*
34 echo !(foo|bar)*
36 cd $OLDPWD
37 rm -rf $DIR