improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 3.cli / complete / complete.tests
blob9d90ec1bb56bec15e9de5559b3d855404003dff1
1 #  Chet Ramey <chet.ramey@case.edu>
3 #  Copyright 2002-2020 Chester Ramey
5 #   This program is free software; you can redistribute it and/or modify
6 #   it under the terms of the GNU General Public License as published by
7 #   the Free Software Foundation; either version 2, or (at your option)
8 #   any later version.
10 #   TThis program is distributed in the hope that it will be useful,
11 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #   GNU General Public License for more details.
15 #   You should have received a copy of the GNU General Public License
16 #   along with this program; if not, write to the Free Software Foundation,
17 #   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 complete
21 # from zsh, just for testing
22 complete -A stopped -P '%' bg
23 complete -j -P '%' fg jobs disown
24 # this is wrong at this point
25 complete -j -P '%' -W '$(ps -x | tail +2 | cut -c1-5)' wait
26 complete -c type
27 complete -a unalias
28 complete -v getopts read unset
29 complete -v -S '=' declare export local readonly typeset
30 complete -f -- . source
31 complete -A shopt shopt
32 complete -e printenv
34 complete -A helptopic help
36 complete -c nohup exec nice eval
37 complete -c -k time
39 complete -A signal trap kill
41 complete -f chown ln more cat
42 complete -d mkdir rmdir
44 complete -f -X '!*.+(gz|tgz)' gunzip gzcat zcat zmore
45 complete -f -X '!*.Z' uncompress zmore zcat
46 complete -f gzip
48 complete -o dirnames -o filenames -o nospace -d pushd popd
50 _comp_cd()
52         local IFS=$' \t\n'      # normalize IFS
53         local cur _skipdot _cdpath
54         local i j k
56         # Tilde expansion, with side effect of expanding tilde to full pathname
57         case "$2" in
58         \~*)    eval cur="$2" ;;
59         *)      cur=$2 ;;
60         esac
62         # no cdpath or absolute pathname -- straight directory completion
63         if [[ -z "${CDPATH:-}" ]] || [[ "$cur" == @(./*|../*|/*) ]]; then
64                 # compgen prints paths one per line; could also use while loop
65                 IFS=$'\n'
66                 COMPREPLY=( $(compgen -d -- "$cur") )
67                 IFS=$' \t\n'
68         # CDPATH+directories in the current directory if not in CDPATH
69         else
70                 IFS=$'\n'
71                 _skipdot=false
72                 # preprocess CDPATH to convert null directory names to .
73                 _cdpath=${CDPATH/#:/.:}
74                 _cdpath=${_cdpath//::/:.:}
75                 _cdpath=${_cdpath/%:/:.}
76                 for i in ${_cdpath//:/$'\n'}; do
77                         if [[ $i -ef . ]]; then _skipdot=true; fi
78                         k="${#COMPREPLY[@]}"
79                         for j in $( compgen -d -- "$i/$cur" ); do
80                                 COMPREPLY[k++]=${j#$i/}         # cut off directory
81                         done
82                 done
83                 $_skipdot || COMPREPLY+=( $(compgen -d -- "$cur") )
84                 IFS=$' \t\n'
85         fi
87         # variable names if appropriate shell option set and no completions
88         if shopt -q cdable_vars && [[ ${#COMPREPLY[@]} -eq 0 ]]; then
89                 COMPREPLY=( $(compgen -v -- "$cur") )
90         fi
92         # append slash to passed directory name that is the only completion.
93         # readline will not do this if we complete from CDPATH
94         if [[ ${#COMPREPLY[@]} -eq 1 ]]; then
95                 i=${COMPREPLY[0]}       # shorthand
96                 if [[ "$cur" == "$i" ]] && [[ "$i" != "*/" ]]; then
97                         COMPREPLY[0]+=/
98                 fi
99         fi
100         return 0
103 complete -o filenames -o nospace -o bushdefault -F _comp_cd cd
105 complete -A hostname rsh telnet rlogin ftp
107 complete -u su
108 complete -W '"${GROUPS[@]}"' newgrp
109 complete -g groupdel groupmod
111 complete -f -X '!*.+(ps|PS)' gs gv ghostview
112 complete -f -X '!*.dvi' dvips xdvi
113 complete -f -X '!*.pdf' acroread
115 complete -f -X '!*.texi*' makeinfo texi2dvi texi2html
117 complete -c gdb make
119 complete -p gs
120 complete -p
122 complete -r xdvi
123 complete -r notthere
125 complete -r
126 complete