xref: /dragonfly/contrib/tcsh-6/complete.tcsh (revision f9993810)
1#
2# example file using the new completion code
3#
4# Debian GNU/Linux
5# /usr/share/doc/tcsh/examples/complete.gz
6#
7# This file may be read from user's ~/.cshrc or ~/.tcshrc file by
8# decompressing it into the home directory as ~/.complete and
9# then adding the line "source ~/.complete" and maybe defining
10# some of the shell variables described below.
11#
12# Added two Debian-specific completions: dpkg and dpkg-deb (who
13# wrote them?). Changed completions of several commands. The ones
14# are evaluated if the `traditional_complete' shell variable is
15# defined.
16#
17# Debian enhancements by Vadim Vygonets <vadik@cs.huji.ac.il>.
18# Bugfixes and apt completions by Miklos Quartus <miklos.quartus@nokia.com>.
19# Cleanup by Martin A. Godisch <martin@godisch.de>.
20
21onintr -
22if ( ! $?prompt ) goto end
23
24if ( $?tcsh ) then
25  if ( $tcsh != 1 ) then
26    set rev=$tcsh:r:r
27    set rel=$tcsh:r:e
28    if ( $rev > 6 || ( $rev > 5 && $rel > 1 ) ) then
29      set _has_complete=1
30    endif
31  endif
32  unset rev rel
33endif
34
35if ( ! $?_has_complete ) goto end
36
37if ( ! $?noglob ) set noglob _unset_noglob
38
39# Old TCSH versions don't define OSTYPE.
40# Use a close approximation instead.
41
42if ( ! $?OSTYPE ) then
43  setenv OSTYPE `echo "$HOSTTYPE" | sed -e 's/^(i[3456]86|(amd|x86_)64)-//'`
44endif
45
46if ( ! $?hosts ) set hosts
47
48foreach f ( "$HOME/."{,r,ssh/known_}hosts* \
49  /usr/local/etc/csh.hosts /etc/hosts.equiv )
50  if ( -r "$f" ) then
51    set hosts=($hosts `sed \
52      -e 's/#.*//' \
53      -e '/^[+-]@/d' \
54      -e 's/^[-+]//' \
55      -e 's/[[:space:]].*//' \
56      -e 's/,/\n/g' "$f" \
57      | sed -e '/^[.:[:xdigit:][:space:]]*$/d'`)
58  endif
59end
60unset f
61
62if ( -r "$HOME/.netrc" ) then
63  set hosts=($hosts `awk '$1 == "machine" { print $2 }' "$HOME/.netrc"`)
64endif
65
66set hosts=(`echo $hosts | tr ' ' '\012' | sort -u`)
67
68if ( ! $#hosts ) then
69  # This is just a hint for the user.
70  set hosts=(ftp.funet.fi ftp.gnu.org ftp.uu.net)
71endif
72
73complete ywho		n/*/\$hosts/	# argument from list in $hosts
74complete rsh		p/1/\$hosts/ c/-/"(l n)"/   n/-l/u/ N/-l/c/ n/-/c/ p/2/c/ p/*/f/
75complete ssh		p/1/\$hosts/ c/-/"(l n)"/   n/-l/u/ N/-l/c/ n/-/c/ p/2/c/ p/*/f/
76complete xrsh		p/1/\$hosts/ c/-/"(l 8 e)"/ n/-l/u/ N/-l/c/ n/-/c/ p/2/c/ p/*/f/
77complete rlogin 	p/1/\$hosts/ c/-/"(l 8 e)"/ n/-l/u/
78complete telnet 	p/1/\$hosts/ p/2/x:'<port>'/ n/*/n/
79
80complete cd  		p/1/d/		# Directories only
81complete chdir 		p/1/d/
82complete pushd 		p/1/d/
83complete popd 		p/1/d/
84complete pu 		p/1/d/
85complete po 		p/1/d/
86complete complete 	p/1/X/		# Completions only
87complete uncomplete	n/*/X/
88complete exec 		p/1/c/		# Commands only
89complete trace 		p/1/c/
90complete strace 	p/1/c/
91complete which		n/*/c/
92complete where		n/*/c/
93complete skill 		p/1/c/
94complete dde		p/1/c/
95complete adb		c/-I/d/ n/-/c/ N/-/"(core)"/ p/1/c/ p/2/"(core)"/
96complete sdb		p/1/c/
97complete dbx		c/-I/d/ n/-/c/ N/-/"(core)"/ p/1/c/ p/2/"(core)"/
98complete xdb		p/1/c/
99complete gdb		n/-d/d/ n/*/c/
100complete ups		p/1/c/
101complete set		'c/*=/f/' 'p/1/s/=' 'n/=/f/'
102complete unset		n/*/s/
103complete alias 		p/1/a/		# only aliases are valid
104complete unalias	n/*/a/
105complete xdvi 		n/*/f:*.dvi/
106complete dvips 		n/*/f:*.dvi/
107complete tex	 	n/*/f:*.{tex,texi}/
108complete latex	 	n/*/f:*.{tex,ltx}/
109
110complete su \
111  c/--/"(login fast preserve-environment command shell help version)"/ \
112  c/-/"(f l m p c s -)"/ \
113  n/{-c,--command}/c/ \
114  n@{-s,--shell}@'`cat /etc/shells`'@ \
115  n/*/u/
116complete cc \
117  c/-[IL]/d/ \
118  c@-l@'`\ls -1 /usr/lib/lib*.a | sed s%^.\*/lib%%\;s%\\.a\$%%`'@ \
119  c/-/"(o l c g L I D U)"/ n/*/f:*.[coasi]/
120complete acc \
121  c/-[IL]/d/ \
122  c@-l@'`\ls -1 /usr/lang/SC1.0/lib*.a | sed s%^.\*/lib%%\;s%\\.a\$%%`'@ \
123  c/-/"(o l c g L I D U)"/ n/*/f:*.[coasi]/
124complete gcc \
125  c/-[IL]/d/ \
126  c/-f/"(caller-saves cse-follow-jumps delayed-branch elide-constructors \
127	expensive-optimizations float-store force-addr force-mem inline \
128	inline-functions keep-inline-functions memoize-lookups \
129	no-default-inline no-defer-pop no-function-cse omit-frame-pointer \
130	rerun-cse-after-loop schedule-insns schedule-insns2 strength-reduce \
131	thread-jumps unroll-all-loops unroll-loops syntax-only all-virtual \
132	cond-mismatch dollars-in-identifiers enum-int-equiv no-asm no-builtin \
133	no-strict-prototype signed-bitfields signed-char this-is-variable \
134	unsigned-bitfields unsigned-char writable-strings call-saved-reg \
135	call-used-reg fixed-reg no-common no-gnu-binutils nonnull-objects \
136	pcc-struct-return pic PIC shared-data short-enums short-double \
137	volatile)"/ \
138  c/-W/"(all aggregate-return cast-align cast-qual comment conversion \
139	enum-clash error format id-clash-len implicit missing-prototypes \
140	no-parentheses pointer-arith return-type shadow strict-prototypes \
141	switch uninitialized unused write-strings)"/ \
142  c/-m/"(68000 68020 68881 bitfield fpa nobitfield rtd short c68000 c68020 \
143	soft-float g gnu unix fpu no-epilogue)"/ \
144  c/-d/"(D M N)"/ \
145  c/-/"(f W vspec v vpath ansi traditional traditional-cpp trigraphs pedantic \
146	x o l c g L I D U O O2 C E H B b V M MD MM i dynamic nodtdlib static \
147	nostdinc undef)"/ \
148  c/-l/f:*.a/ \
149  n/*/f:*.{c,C,cc,o,a,s,i}/
150complete g++ 	n/*/f:*.{C,cc,o,s,i}/
151complete CC 	n/*/f:*.{C,cc,cpp,o,s,i}/
152complete rm \
153  c/--/"(directory force interactive verbose recursive help version)"/ \
154  c/-/"(d f i v r R -)"/ \
155  n/*/f:^*.{c,cc,C,h,in}/
156  # Protect precious files
157complete vi 	n/*/f:^*.[oa]/
158complete bindkey \
159  N/-a/b/ N/-c/c/ n/-[ascr]/'x:<key-sequence>'/ \
160  n/-[svedlr]/n/ c/-[vedl]/n/ c/-/"(a s k c v e d l r)"/ \
161  n/-k/"(left right up down)"/ p/2-/b/ \
162  p/1/'x:<key-sequence or option>'/
163
164complete find \
165  n/-fstype/"(nfs 4.2)"/ \
166  n/-name/f/ \
167  n/-type/"(c b d f p l s)"/ \
168  n/-user/u/ \
169  n/-group/g/ \
170  n/-exec/c/ \
171  n/-ok/c/ \
172  n/-cpio/f/ \
173  n/-ncpio/f/ \
174  n/-newer/f/ \
175  c/-/"(fstype name perm prune type user nouser group nogroup size inum \
176	atime mtime ctime exec ok print ls cpio ncpio newer xdev depth \
177	daystart follow maxdepth mindepth noleaf version anewer cnewer \
178	amin cmin mmin true false uid gid ilname iname ipath iregex links \
179	lname empty path regex used xtype fprint fprint0 fprintf print0 \
180	printf not a and o or)"/ \
181  n/*/d/
182
183complete -%*		c/%/j/			# fill in the jobs builtin
184complete {fg,bg,stop}	c/%/j/ p/1/"(%)"//
185
186complete limit		c/-/"(h)"/ n/*/l/
187complete unlimit	c/-/"(h)"/ n/*/l/
188
189#complete -co*	p/0/"(compress)"/	# make compress completion
190#					    # not ambiguous
191
192# "zcat" may be linked to "compress" or "gzip"
193if (-X zcat) then
194  zcat --version >& /dev/null
195  if ($status != 0) then
196    complete zcat	n/*/f:*.Z/
197  else
198    complete zcat	c/--/"(force help license quiet version)"/ \
199			c/-/"(f h L q V -)"/ \
200			n/*/f:*.{gz,Z,z,zip}/
201  endif
202endif
203
204complete finger	c/*@/\$hosts/ n/*/u/@
205complete ping	p/1/\$hosts/
206complete traceroute	p/1/\$hosts/
207
208complete {talk,ntalk,phone} \
209  p/1/'`users | tr " " "\012" | uniq`'/ \
210  n/*/\`who\ \|\ grep\ \$:1\ \|\ awk\ \'\{\ print\ \$2\ \}\'\`/
211
212complete ftp	c/-/"(d i g n v)"/ n/-/\$hosts/ p/1/\$hosts/ n/*/n/
213
214# this one is simple...
215#complete rcp c/*:/f/ C@[./\$~]*@f@ n/*/\$hosts/:
216# From Michael Schroeder <mlschroe@immd4.informatik.uni-erlangen.de>
217# This one will rsh to the file to fetch the list of files!
218complete rcp 'c%*@*:%`set q=$:-0;set q="$q:s/@/ /";set q="$q:s/:/ /";set q=($q " ");rsh $q[2] -l $q[1] ls -dp $q[3]\*`%' 'c%*:%`set q=$:-0;set q="$q:s/:/ /";set q=($q " ");rsh $q[1] ls -dp $q[2]\*`%' 'c%*@%$hosts%:' 'C@[./$~]*@f@'  'n/*/$hosts/:'
219
220complete dd \
221  c/--/"(help version)"/ c/[io]f=/f/ \
222  c/conv=*,/"(ascii ebcdic ibm block unblock \
223	      lcase notrunc ucase swab noerror sync)"/,\
224  c/conv=/"(ascii ebcdic ibm block unblock \
225	    lcase notrunc ucase swab noerror sync)"/,\
226  c/*=/x:'<number>'/ \
227  n/*/"(if of conv ibs obs bs cbs files skip file seek count)"/=
228
229complete nslookup   p/1/x:'<host>'/ p/2/\$hosts/
230
231complete ar \
232  c/[dmpqrtx]/"(c l o u v a b i)"/ \
233  p/1/"(d m p q r t x)"// \
234  p/2/f:*.a/ \
235  p/*/f:*.o/
236
237# these should be merged with the MH completion hacks below - jgotts
238complete {refile,sprev,snext,scan,pick,rmm,inc,folder,show} \
239	    "c@+@F:$HOME/Mail/@"
240
241# these and interrupt handling from Jaap Vermeulen <jaap@sequent.com>
242complete {rexec,rxexec,rxterm,rmterm} \
243  'p/1/$hosts/' \
244  'c/-/(l L E)/' \
245  'n/-l/u/' \
246  'n/-L/f/' \
247  'n/-E/e/' \
248  'n/*/c/'
249complete kill \
250  'c/-/S/' \
251  'c/%/j/' \
252  'n/*/`ps -u $LOGNAME | awk '"'"'{print $1}'"'"'`/'
253
254# these from Marc Horowitz <marc@cam.ov.com>
255complete attach \
256  'n/-mountpoint/d/' \
257  'n/-m/d/' \
258  'n/-type/(afs nfs rvd ufs)/' \
259  'n/-t/(afs nfs rvd ufs)/' \
260  'n/-user/u/' \
261  'n/-U/u/' \
262  'c/-/(verbose quiet force printpath lookup debug map nomap remap zephyr \
263	nozephyr readonly write mountpoint noexplicit explicit type \
264	mountoptions nosetuid setuid override skipfsck lock user host)/' \
265  'n/-e/f/' \
266  'n/*/()/'
267complete hesinfo \
268  'p/1/u/' \
269  'p/2/(passwd group uid grplist pcap pobox cluster filsys sloc service)/'
270
271complete ./configure \
272  'c@--{prefix,exec-prefix,bindir,sbindir,libexecdir,datadir,sysconfdir,sharedstatedir,localstatedir,infodir,mandir,srcdir,x-includes,x-libraries}=*@x:<directory e.g. /usr/local>'@ \
273  'c/--cachefile=*/x:<filename>/' \
274  'c/--{enable,disable,with}-*/x:<feature>//' \
275  'c/--*=/x:<directory>//' \
276  'c/--/(prefix= exec-prefix= bindir= sbindir= libexecdir= datadir= \
277	sysconfdir= sharedstatedir= localstatedir= infodir= mandir= \
278	srcdir= x-includes= x-libraries= cachefile= enable- disable- \
279	with- help no-create quiet silent version verbose )//'
280
281complete gs \
282  'c/-sDEVICE=/(x11 cdjmono cdj550 epson eps9high epsonc dfaxhigh dfaxlow \
283		laserjet ljet4 sparc pbm pbmraw pgm pgmraw ppm ppmraw bit)/' \
284  'c/-sOutputFile=/f/' 'c/-s/(DEVICE OutputFile)/=' \
285  'c/-d/(NODISPLAY NOPLATFONTS NOPAUSE)/' 'n/*/f/'
286complete perl		'n/-S/c/'
287complete sccs \
288  p/1/"(admin cdc check clean comb deledit delget delta diffs edit enter \
289	fix get help info print prs prt rmdel sccsdiff tell unedit unget \
290	val what)"/
291
292complete printenv	'n/*/e/'
293complete setenv		'p/1/e/' 'c/*:/f/'
294
295# these and method of setting hosts from Kimmo Suominen <kim@tac.nyc.ny.us>
296if ( -f "$HOME/.mh_profile" && -X folders ) then
297  if ( ! $?FOLDERS ) setenv FOLDERS "`folders -fast -recurse`"
298  if ( ! $?MHA )     setenv MHA     "`ali | sed -e '/^ /d' -e 's/:.*//'`"
299
300  set folders = ( $FOLDERS )
301  set mha = ( $MHA )
302
303  complete ali \
304    'c/-/(alias nolist list nonormalize normalize nouser user help)/' \
305    'n,-alias,f,'
306
307  complete anno \
308    'c/-/(component noinplace inplace nodate date text help)/' \
309    'c,+,$folders,'  \
310    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
311
312  complete burst \
313    'c/-/(noinplace inplace noquiet quiet noverbose verbose help)/' \
314    'c,+,$folders,'  \
315    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
316
317  complete comp \
318    'c/-/(draftfolder draftmessage nodraftfolder editor noedit file form nouse use whatnowproc nowhatnowproc help)/' \
319    'c,+,$folders,'  \
320    'n,-whatnowproc,c,'  \
321    'n,-file,f,'\
322    'n,-form,f,'\
323    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
324
325  complete dist \
326    'c/-/(noannotate annotate draftfolder draftmessage nodraftfolder editor noedit form noinplace inplace whatnowproc nowhatnowproc help)/' \
327    'c,+,$folders,'  \
328    'n,-whatnowproc,c,'  \
329    'n,-form,f,'\
330    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
331
332  complete folder \
333    'c/-/(all nofast fast noheader header nopack pack noverbose verbose norecurse recurse nototal total noprint print nolist list push pop help)/' \
334    'c,+,$folders,'  \
335    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
336
337  complete folders \
338    'c/-/(all nofast fast noheader header nopack pack noverbose verbose norecurse recurse nototal total noprint print nolist list push pop help)/' \
339    'c,+,$folders,'  \
340    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
341
342  complete forw \
343    'c/-/(noannotate annotate draftfolder draftmessage nodraftfolder editor noedit filter form noformat format noinplace inplace digest issue volume whatnowproc nowhatnowproc help)/' \
344    'c,+,$folders,'  \
345    'n,-whatnowproc,c,'  \
346    'n,-filter,f,'\
347    'n,-form,f,'\
348    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
349
350  complete inc \
351    'c/-/(audit file noaudit nochangecur changecur file form format nosilent silent notruncate truncate width help)/' \
352    'c,+,$folders,'  \
353    'n,-audit,f,'\
354    'n,-form,f,'
355
356  complete mark \
357    'c/-/(add delete list sequence nopublic public nozero zero help)/' \
358    'c,+,$folders,'  \
359    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
360
361  complete mhmail \
362    'c/-/(body cc from subject help)/' \
363    'n,-cc,$mha,'  \
364    'n,-from,$mha,'  \
365    'n/*/$mha/'
366
367  complete mhpath \
368    'c/-/(help)/' \
369    'c,+,$folders,'  \
370    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
371
372  complete msgchk \
373    'c/-/(nodate date nonotify notify help)/'
374
375  complete msh \
376    'c/-/(prompt noscan scan notopcur topcur help)/'
377
378  complete next \
379    'c/-/(draft form moreproc nomoreproc length width showproc noshowproc header noheader help)/' \
380    'c,+,$folders,'  \
381    'n,-moreproc,c,'  \
382    'n,-showproc,c,'  \
383    'n,-form,f,'
384
385  complete packf \
386    'c/-/(file help)/' \
387    'c,+,$folders,'  \
388    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
389
390  complete pick \
391    'c/-/(and or not lbrace rbrace cc date from search subject to othercomponent after before datefield sequence nopublic public nozero zero nolist list help)/' \
392    'c,+,$folders,'  \
393    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
394
395  complete prev \
396    'c/-/(draft form moreproc nomoreproc length width showproc noshowproc header noheader help)/' \
397    'c,+,$folders,'  \
398    'n,-moreproc,c,'  \
399    'n,-showproc,c,'  \
400    'n,-form,f,'
401
402  complete prompter \
403    'c/-/(erase kill noprepend prepend norapid rapid nodoteof doteof help)/'
404
405  complete refile \
406    'c/-/(draft nolink link nopreserve preserve src file help)/' \
407    'c,+,$folders,'  \
408    'n,-file,f,'\
409    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
410
411  complete rmf \
412    'c/-/(nointeractive interactive help)/' \
413    'c,+,$folders,'
414
415  complete rmm \
416    'c/-/(help)/' \
417    'c,+,$folders,'  \
418    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
419
420  complete scan \
421    'c/-/(noclear clear form format noheader header width noreverse reverse file help)/' \
422    'c,+,$folders,'  \
423    'n,-form,f,'\
424    'n,-file,f,'\
425    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
426
427  complete send \
428    'c/-/(alias draft draftfolder draftmessage nodraftfolder filter nofilter noformat format noforward forward nomsgid msgid nopush push noverbose verbose nowatch watch width help)/' \
429    'n,-alias,f,'\
430    'n,-filter,f,'
431
432  complete show \
433    'c/-/(draft form moreproc nomoreproc length width showproc noshowproc header noheader help)/' \
434    'c,+,$folders,'  \
435    'n,-moreproc,c,'  \
436    'n,-showproc,c,'  \
437    'n,-form,f,'\
438    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
439
440  complete sortm \
441    'c/-/(datefield textfield notextfield limit nolimit noverbose verbose help)/' \
442    'c,+,$folders,'  \
443    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
444
445  complete vmh \
446    'c/-/(prompt vmhproc novmhproc help)/' \
447    'n,-vmhproc,c,'
448
449  complete whatnow \
450    'c/-/(draftfolder draftmessage nodraftfolder editor noedit prompt help)/'
451
452  complete whom \
453    'c/-/(alias nocheck check draft draftfolder draftmessage nodraftfolder help)/' \
454    'n,-alias,f,'
455
456  complete plum \
457    'c/-/()/' \
458    'c,+,$folders,'  \
459    'n,*,`(mark | sed "s/:.*//" ; echo next cur prev first last)|tr " " "\012" | sort -u`,'
460
461  complete mail \
462    'c/-/()/' \
463    'n/*/$mha/'
464
465endif
466
467#from Dan Nicolaescu <dann@ics.uci.edu>
468if ( $?MODULESHOME ) then
469  alias Compl_module \
470    'find ${MODULEPATH:as/:/ /} -name .version -o -name .modulea\* -prune \
471    -o -print | sed `echo "-e s@${MODULEPATH:as%:%/\*@@g -e s@%}/\*@@g"`'
472  complete module \
473    'p%1%(add load unload switch display avail use unuse update purge list \
474	  clear help initadd initrm initswitch initlist initclear)%' \
475    'n%{unl*,sw*,inits*}%`echo "$LOADEDMODULES:as/:/ /"`%' \
476    'n%{lo*,di*,he*,inita*,initr*}%`eval Compl_module`%' \
477    'N%{sw*,initsw*}%`eval Compl_module`%' \
478    'C%-%(-append)%' \
479    'n%{use,unu*,av*}%d%' \
480    'n%-append%d%' \
481    'C%[^-]*%`eval Compl_module`%'
482endif
483
484# from George Cox
485complete acroread	'p/*/f:*.{pdf,PDF}/'
486complete apachectl	'c/*/(start stop restart fullstatus status graceful \
487			      configtest help)/'
488complete appletviewer	'p/*/f:*.class/'
489complete bison		'c/--/(debug defines file-prefix= fixed-output-files \
490				help name-prefix= no-lines no-parser output= \
491				token-table verbose version yacc)/' \
492			'c/-/(b d h k l n o p t v y V)/' \
493			'n/-b/f/' 'n/-o/f/' 'n/-p/f/'
494complete bzcat		c/--/"(help test quiet verbose license version)"/ \
495			c/-/"(h t L V -)"/ n/*/f:*.{bz2,tbz}/
496complete bunzip2	c/--/"(help keep force test stdout quiet verbose \
497				license version)"/ \
498			c/-/"(h k f t c q v L V -)"/ \
499			n/*/f:*.{bz2,tbz}/
500complete bzip2		c/--/"(help decompress compress keep force test \
501				stdout quiet verbose license version small)"/ \
502			c/-/"(h d z k f t c q v L V s 1 2 3 4 5 6 7 8 9 -)"/ \
503			n/{-d,--decompress}/f:*.{bz2,tbz}/ \
504			N/{-d,--decompress}/f:*.{bz2,tbz}/ n/*/f:^*.{bz2,tbz}/
505complete c++		'p/*/f:*.{c++,cxx,c,cc,C,cpp}/'
506complete co		'p@1@`\ls -1a RCS | sed -e "s/\(.*\),v/\1/"`@'
507complete crontab	'n/-u/u/'
508complete camcontrol	'p/1/(cmd debug defects devlist eject inquiry \
509			      modepage negotiate periphlist rescan reset \
510			      start stop tags tur)/'
511complete ctlinnd	'p/1/(addhist allow begin cancel changegroup \
512			      checkfile drop feedinfo flush flushlogs go \
513			      hangup logmode mode name newgroup param pause \
514			      readers refile reject reload renumber reserve \
515			      rmgroup send shutdown kill throttle trace \
516			      xabort xexec)/'
517complete cvs		'c/--/(help help-commands help-synonyms)/' \
518			'p/1/(add admin annotate checkout commit diff edit \
519			      editors export history import init log login \
520			      logout rdiff release remove rtag status tag \
521			      unedit update watch watchers)/' \
522			'n/-a/(edit unedit commit all none)/' \
523			'n/watch/(on off add remove)/'
524complete svn	 	'C@file:///@`'"${HOME}/etc/tcsh/complete.d/svn"'`@@' \
525			'n@ls@(file:/// svn+ssh:// svn://)@@' \
526			'n@help@(add blame cat checkout cleanup commit copy \
527				  delete export help import info list ls \
528				  lock log merge mkdir move propdel propedit \
529				  propget proplist propset resolved revert \
530				  status switch unlock update)@' \
531			'p@1@(add blame cat checkout cleanup commit copy \
532			      delete export help import info list ls lock \
533			      log merge mkdir move propdel propedit propget \
534			      proplist propset resolved revert status switch \
535			      unlock update)@'
536
537complete cxx		'p/*/f:*.{c++,cxx,c,cc,C,cpp}/'
538complete detex		'p/*/f:*.tex/'
539complete edquota	'n/*/u/'
540complete exec		'p/1/c/'
541complete ghostview	'p/*/f:*.ps/'
542complete gv		'p/*/f:*.ps/'
543complete ifconfig	'p@1@`ifconfig -l`@' \
544			'n/*/(range phase link netmask mtu vlandev vlan \
545			    metric mediaopt down delete broadcast arp debug)/'
546complete imake		'c/-I/d/'
547complete ipfw		'p/1/(flush add delete list show zero)/' \
548			'n/add/(allow permit accept pass deny drop reject \
549				reset count skipto num divert port tee port)/'
550complete javac		'p/*/f:*.java/'
551complete ldif2ldbm	'n/-i/f:*.ldif/'
552complete libtool	'c/--mode=/(compile execute finish install link \
553				    uninstall)/' \
554			'c/--/(config debug dry-run features finish help \
555				quiet silent version mode=)/'
556complete libtoolize	'c/--/(automake copy debug dry-run force help ltdl \
557				ltdl-tar version)/'
558complete links		'c/-/(assume-codepage async-dns download-dir \
559			      format-cache-size ftp-proxy help http-proxy \
560			      max-connections max-connections-to-host \
561			      memory-cache-size receive-timeout retries \
562			      unrestartable-receive-timeout version)/'
563complete natd		c/-/'(alias_address config deny_incoming dynamic \
564			      inport interface log log_denied log_facility \
565			      outport outport port pptpalias proxy_only \
566			      proxy_rule redirect_address redirect_port \
567			      reverse same_ports unregistered_only use_sockets \
568			      verbose)'/ \
569			'n@-interface@`ifconfig -l`@'
570complete netstat	'n@-I@`ifconfig -l`@'
571complete objdump	'c/--/(adjust-vma= all-headers architecture= \
572			      archive-headers debugging demangle disassemble \
573			      disassemble-all disassemble-zeroes dynamic-reloc \
574			      dynamic-syms endian= file-headers full-contents \
575			      headers help info line-numbers no-show-raw-insn \
576			      prefix-addresses private-headers reloc \
577			      section-headers section=source stabs \
578			      start-address= stop-address= syms target= \
579			      version wide)/' \
580			'c/-/(a h i f C d D p r R t T x s S l w)/'
581complete xmodmap	'c/-/(display help grammar verbose quiet n e pm pk \
582			      pke pp)/'
583complete lynx		'c/-/(accept_all_cookies anonymous assume_charset= \
584			      assume_local_charset= assume_unrec_charset= \
585			      auth= base book buried_news cache= case cfg= \
586			      child cookie_file= cookies core crawl \
587			      debug_partial display= dump editor= emacskeys \
588			      enable_scrollback error_file= force_html \
589			      force_secure forms_options from ftp get_data \
590			      head help hiddenlinks= historical homepage= \
591			      image_links index= ismap link= localhost \
592			      mime_header minimal newschunksize= \
593			      newsmaxchunk= nobrowse nocc nocolor \
594			      nofilereferer nolist nolog nopause noprint \
595			      noredir noreferer nostatus number_links \
596			      partial partial_thres pauth= popup post_data \
597			      preparsed print pseudo_inlines raw realm \
598			      reload restrictions= resubmit_posts rlogin \
599			      selective show_cursor soft_dquotes source \
600			      stack_dump startfile_ok tagsoup telnet term= \
601			      tlog trace traversal underscore useragent= \
602			      validate verbose version vikeys width=)/' \
603			'c/(http|ftp)/$URLS/'
604complete gmake		'c/{--directory=,--include-dir=}/d/' \
605			'c/{--assume-new,--assume-old,--makefile,--new-file,--what-if,--file}/f/' \
606			'c/--/(assume-new= assume-old= debug directory= \
607			      dry-run environment-overrides file= help \
608			      ignore-errors include-dir= jobs[=N] just-print \
609			      keep-going load-average[=N] makefile= \
610			      max-load[=N] new-file= no-builtin-rules \
611			      no-keep-going no-print-directory old-file= \
612			      print-data-base print-directory question quiet \
613			      recon silent stop touch version \
614			      warn-undefined-variables what-if=)/' \
615			'n@*@`cat -s GNUMakefile Makefile makefile |& sed -n -e "/No such file/d" -e "s/^\([A-Za-z0-9-]*\):.*/\1/p"`@' \
616			'n/=/f/' \
617			'n/-f/f/'
618
619complete mpg123		'c/--/(2to1 4to1 8bit aggressive au audiodevice auth \
620			      buffer cdr check doublespeed equalizer frames \
621			      gain halfspeed headphones left lineout list \
622			      mix mono proxy quiet random rate reopen resync \
623			      right scale shuffle single0 single1 skip \
624			      speaker stdout stereo test verbose wav)/'
625complete mysqladmin	'n/*/(create drop extended-status flush-hosts \
626			      flush-logs flush-status flush-tables \
627			      flush-privileges kill password ping \
628			      processlist reload refresh shutdown status \
629			      variables version)/'
630
631complete mutt \
632  "c@-f=@F:${HOME}/Mail/@" \
633  n/-a/f/ \
634  n/-F/f/ \
635  n/-H/f/ \
636  n/-s/x:'<subject line>'/ \
637  n/-e/x:'<command>'/ \
638  n@-b@'`cat "${HOME}/.muttrc-alias" | awk '"'"'{print $2 }'"'"\`@ \
639  n@-c@'`cat "${HOME}/.muttrc-alias" | awk '"'"'{print $2 }'"'"\`@ \
640  n@*@'`cat "${HOME}/.muttrc-alias" | awk '"'"'{print $2 }'"'"\`@
641
642complete ndc	'n/*/(status dumpdb reload stats trace notrace \
643		    querylog start stop restart )/'
644
645complete nm \
646  'c/--radix=/x:<radix: _o_ctal _d_ecimal he_x_adecimal>/' \
647  'c/--target=/x:<bfdname>/' \
648  'c/--format=/(bsd sysv posix)/n/' \
649  'c/--/(debugsyms extern-only demangle dynamic print-armap \
650	  print-file-name numeric-sort no-sort reverse-sort \
651	  size-sort undefined-only portability target= radix= \
652	  format= defined-only\ line-numbers no-demangle version \
653	  help)//' \
654  'n/*/f:^*.{h,c,cc,s,S}/'
655
656complete nmap	'n@-e@`ifconfig -l`@' 'p/*/$hostnames/'
657complete perldoc 	'n@*@`\ls -1 /usr/libdata/perl/5.*/pod | sed s%\\.pod.\*\$%%`@'
658complete postfix    'n/*/(start stop reload abort flush check)/'
659complete postmap	'n/1/(hash: regexp:)/' 'c/hash:/f/' 'c/regexp:/f/'
660complete rcsdiff	'p@1@`\ls -1a RCS | sed -e "s/\(.*\),v/\1/"`@'
661complete X		'c/-/(I a ac allowMouseOpenFail allowNonLocalModInDev \
662		    allowNonLocalXvidtune ar1 ar2 audit auth bestRefresh \
663		    bgamma bpp broadcast bs c cc class co core deferglyphs \
664		    disableModInDev disableVidMode displayID dpi dpms f fc \
665		    flipPixels fn fp gamma ggamma help indirect kb keeptty \
666		    ld lf logo ls nolisten string noloadxkb nolock nopn \
667		    once p pn port probeonly query quiet r rgamma s \
668		    showconfig sp su t terminate to tst v verbose version \
669		    weight wm x xkbdb xkbmap)/'
670complete users      'c/--/(help version)/' 'p/1/x:"<accounting_file>"/'
671complete vidcontrol	'p/1/(132x25 132x30 132x43 132x50 132x60 40x25 80x25 \
672		    80x30 80x43 80x50 80x60 EGA_80x25 EGA_80x43 \
673		    VESA_132x25 VESA_132x30 VESA_132x43 VESA_132x50 \
674		    VESA_132x60 VESA_800x600 VGA_320x200 VGA_40x25 \
675		    VGA_80x25 VGA_80x30 VGA_80x50 VGA_80x60)/'
676complete vim	'n/*/f:^*.[oa]/'
677complete where	'n/*/c/'
678complete which	'n/*/c/'
679complete wmsetbg	'c/-/(display D S a b c d e m p s t u w)/' \
680		    'c/--/(back-color center colors dither help match \
681		    maxscale parse scale smooth tile update-domain \
682		    update-wmaker version workspace)/'
683complete xdb	'p/1/c/'
684complete xdvi	'c/-/(allowshell debug display expert gamma hushchars \
685		    hushchecksums hushspecials install interpreter keep \
686		    margins nogrey noinstall nomakepk noscan paper safer \
687		    shrinkbuttonn thorough topmargin underlink version)/' \
688		    'n/-paper/(a4 a4r a5 a5r)/' 'p/*/f:*.dvi/'
689complete xlock	'c/-/(allowaccess allowroot debug description \
690		    echokeys enablesaver grabmouse grabserver hide inroot \
691		    install inwindow mono mousemotion nolock remote \
692		    resetsaver sound timeelapsed use3d usefirst verbose \
693		    wireframe background batchcount bg bitmap both3d \
694		    count cycles delay delta3d display dpmsoff \
695		    dpmsstandby dpmssuspend endCmd erasedelay erasemode \
696		    erasetime fg font foreground geometry help \
697		    icongeometry info invalid left3d lockdelay logoutCmd \
698		    mailCmd mailIcon message messagefile messagefont \
699		    messagesfile mode name ncolors nice nomailIcon none3d \
700		    parent password planfont program resources right3d \
701		    saturation size startCmd timeout username validate \
702		    version visual)/' 'n/-mode/(ant atlantis ball bat \
703		    blot bouboule bounce braid bubble bubble3d bug cage \
704		    cartoon clock coral crystal daisy dclock decay deco \
705		    demon dilemma discrete drift eyes fadeplot flag flame \
706		    flow forest galaxy gears goop grav helix hop hyper \
707		    ico ifs image invert julia kaleid kumppa lament laser \
708		    life life1d life3d lightning lisa lissie loop lyapunov \
709		    mandelbrot marquee matrix maze moebius morph3d \
710		    mountain munch nose pacman penrose petal pipes puzzle \
711		    pyro qix roll rotor rubik shape sierpinski slip sphere \
712		    spiral spline sproingies stairs star starfish strange \
713		    superquadrics swarm swirl tetris thornbird triangle \
714		    tube turtle vines voters wator wire world worm xjack \
715		    blank bomb random)/'
716complete xfig	'c/-/(display)/' 'p/*/f:*.fig/'
717complete wget 	c/--/"(accept= append-output= background cache= \
718		    continue convert-links cut-dirs= debug \
719		    delete-after directory-prefix= domains= \
720		    dont-remove-listing dot-style= exclude-directories= \
721		    exclude-domains= execute= follow-ftp \
722		    force-directories force-html glob= header= help \
723		    http-passwd= http-user= ignore-length \
724		    include-directories= input-file= level= mirror \
725		    no-clobber no-directories no-host-directories \
726		    no-host-lookup no-parent non-verbose \
727		    output-document= output-file= passive-ftp \
728		    proxy-passwd= proxy-user= proxy= quiet quota= \
729		    recursive reject= relative retr-symlinks save-headers \
730		    server-response span-hosts spider timeout= \
731		    timestamping tries= user-agent= verbose version wait=)"/
732
733# these from Tom Warzeka <tom@waz.cc>
734
735# this one works but is slow and doesn't descend into subdirectories
736# complete	cd	C@[./\$~]*@d@ \
737#			p@1@'`\ls -1F . $cdpath | grep /\$ | sort -u`'@ n@*@n@
738
739if ( -r /etc/shells ) then
740    complete setenv	p@1@e@ n@DISPLAY@\$hosts@: n@SHELL@'`cat /etc/shells`'@
741else
742    complete setenv	p@1@e@ n@DISPLAY@\$hosts@:
743endif
744complete unsetenv	n/*/e/
745
746set _maildir = /var/mail
747if (-r "$HOME/.mailrc") then
748    complete mail	c/-/"(e i f n s u v)"/ c/*@/\$hosts/ \
749		    "c@+@F:$HOME/Mail@" C@[./\$~]@f@ n/-s/x:'<subject>'/ \
750		    n@-u@T:$_maildir@ n/-f/f/ \
751		    n@*@'`sed -n s/alias//p "$HOME/.mailrc" | \
752		    tr -s " " "	" | cut -f 2`'@
753else
754    complete mail	c/-/"(e i f n s u v)"/ c/*@/\$hosts/ \
755		    "c@+@F:$HOME/Mail@" C@[./\$~]@f@ n/-s/x:'<subject>'/ \
756		    n@-u@T:$_maildir@ n/-f/f/ n/*/u/
757endif
758unset _maildir
759
760if (! $?MANPATH) then
761    if (-r /usr/share/man) then
762	setenv MANPATH /usr/share/man:
763    else
764	setenv MANPATH /usr/man:
765    endif
766endif
767
768if ($?traditional_complete) then
769    # use of $MANPATH from Dan Nicolaescu <dann@ics.uci.edu>
770    # use of 'find' adapted from Lubomir Host <host8@kepler.fmph.uniba.sk>
771    complete man \
772	'n@1@`set q = "$MANPATH:as%:%/man1 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.1.\*\$%%`@'\
773	'n@2@`set q = "$MANPATH:as%:%/man2 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.2.\*\$%%`@'\
774	'n@3@`set q = "$MANPATH:as%:%/man3 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.3.\*\$%%`@'\
775	'n@4@`set q = "$MANPATH:as%:%/man4 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.4.\*\$%%`@'\
776	'n@5@`set q = "$MANPATH:as%:%/man5 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.5.\*\$%%`@'\
777	'n@6@`set q = "$MANPATH:as%:%/man6 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.6.\*\$%%`@'\
778	'n@7@`set q = "$MANPATH:as%:%/man7 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.7.\*\$%%`@'\
779	'n@8@`set q = "$MANPATH:as%:%/man8 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.8.\*\$%%`@'\
780	'n@9@`set q = "$MANPATH:as%:%/man9 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.9.\*\$%%`@'\
781	'n@0@`set q = "$MANPATH:as%:%/man0 %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.0.\*\$%%`@'\
782	'n@n@`set q = "$MANPATH:as%:%/mann %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.n.\*\$%%`@'\
783	'n@o@`set q = "$MANPATH:as%:%/mano %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.o.\*\$%%`@'\
784	'n@l@`set q = "$MANPATH:as%:%/manl %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.l.\*\$%%`@'\
785	'n@p@`set q = "$MANPATH:as%:%/manp %" ; \ls -1 $q |& sed -e s%^.\*:.\*\$%% -e s%\\.p.\*\$%%`@'\
786	c@-@"(- f k M P s S t)"@ n@-f@c@ n@-k@x:'<keyword>'@ n@-[MP]@d@   \
787	'N@-[MP]@`\ls -1 $:-1/man? |& sed -n s%\\..\\+\$%%p`@'            \
788	'n@-[sS]@`\ls -1 $MANPATH:as%:% % |& sed -n s%^man%%p | sort -u`@'\
789	'n@*@`find $MANPATH:as%:% % \( -type f -o -type l \) -printf "%f " |& sed -e "s%find: .*: No such file or directory%%" -e "s%\([^\.]\+\)\.\([^ ]*\) %\1 %g"`@'
790	#n@*@c@ # old way -- commands only
791else
792    complete man	    n@1@'`\ls -1 /usr/man/man1 | sed s%\\.1.\*\$%%`'@ \
793			n@2@'`\ls -1 /usr/man/man2 | sed s%\\.2.\*\$%%`'@ \
794			n@3@'`\ls -1 /usr/man/man3 | sed s%\\.3.\*\$%%`'@ \
795			n@4@'`\ls -1 /usr/man/man4 | sed s%\\.4.\*\$%%`'@ \
796			n@5@'`\ls -1 /usr/man/man5 | sed s%\\.5.\*\$%%`'@ \
797			n@6@'`\ls -1 /usr/man/man6 | sed s%\\.6.\*\$%%`'@ \
798			n@7@'`\ls -1 /usr/man/man7 | sed s%\\.7.\*\$%%`'@ \
799			n@8@'`\ls -1 /usr/man/man8 | sed s%\\.8.\*\$%%`'@ \
800n@9@'`[ -r /usr/man/man9 ] && \ls -1 /usr/man/man9 | sed s%\\.9.\*\$%%`'@ \
801n@0@'`[ -r /usr/man/man0 ] && \ls -1 /usr/man/man0 | sed s%\\.0.\*\$%%`'@ \
802n@new@'`[ -r /usr/man/mann ] && \ls -1 /usr/man/mann | sed s%\\.n.\*\$%%`'@ \
803n@old@'`[ -r /usr/man/mano ] && \ls -1 /usr/man/mano | sed s%\\.o.\*\$%%`'@ \
804n@local@'`[ -r /usr/man/manl ] && \ls -1 /usr/man/manl | sed s%\\.l.\*\$%%`'@ \
805n@public@'`[ -r /usr/man/manp ]&& \ls -1 /usr/man/manp | sed s%\\.p.\*\$%%`'@ \
806	    c/-/"(- f k P s t)"/ n/-f/c/ n/-k/x:'<keyword>'/ n/-P/d/ \
807	    N@-P@'`\ls -1 $:-1/man? | sed s%\\..\*\$%%`'@ n/*/c/
808endif
809
810complete ps	        c/-t/x:'<tty>'/ c/-/"(a c C e g k l S t u v w x)"/ \
811		    n/-k/x:'<kernel>'/ N/-k/x:'<core_file>'/ n/*/x:'<PID>'/
812complete compress	c/-/"(c f v b)"/ n/-b/x:'<max_bits>'/ n/*/f:^*.Z/
813complete uncompress	c/-/"(c f v)"/                        n/*/f:*.Z/
814
815complete uuencode	p/1/f/ p/2/x:'<decode_pathname>'/ n/*/n/
816complete uudecode	c/-/"(f)"/ n/-f/f:*.{uu,UU}/ p/1/f:*.{uu,UU}/ n/*/n/
817
818complete xhost	c/[+-]/\$hosts/ n/*/\$hosts/
819complete xpdf	c/-/"(z g remote raise quit cmap rgb papercolor       \
820			  eucjp t1lib freetype ps paperw paperh level1    \
821			  upw fullscreen cmd q v h help)"/                \
822		    n/-z/x:'<zoom (-5 .. +5) or "page" or "width">'/      \
823		    n/-g/x:'<geometry>'/ n/-remote/x:'<name>'/            \
824		    n/-rgb/x:'<number>'/ n/-papercolor/x:'<color>'/       \
825		    n/-{t1lib,freetype}/x:'<font_type>'/                  \
826		    n/-ps/x:'<PS_file>'/ n/-paperw/x:'<width>'/           \
827		    n/-paperh/x:'<height>'/ n/-upw/x:'<password>'/        \
828		    n/-/f:*.{pdf,PDF}/                                    \
829		    N/-{z,g,remote,rgb,papercolor,t1lib,freetype,ps,paperw,paperh,upw}/f:*.{pdf,PDF}/ \
830		    N/-/x:'<page>'/ p/1/f:*.{pdf,PDF}/ p/2/x:'<page>'/
831
832complete tcsh	c/-D*=/'x:<value>'/ c/-D/'x:<name>'/ \
833		    c/-/"(b c d D e f F i l m n q s t v V x X -version)"/ \
834		    n/-c/c/ n/{-l,--version}/n/ n/*/'f:*.{,t}csh'/
835
836complete rpm	c/--/"(query verify nodeps nofiles nomd5 noscripts    \
837		    nogpg nopgp install upgrade freshen erase allmatches  \
838		    notriggers repackage test rebuild recompile initdb    \
839		    rebuilddb addsign resign querytags showrc setperms    \
840		    setugids all file group package querybynumber qf      \
841		    triggeredby whatprovides whatrequires changelog       \
842		    configfiles docfiles dump filesbypkg info last list   \
843		    provides queryformat requires scripts state triggers  \
844		    triggerscripts allfiles badreloc excludepath checksig \
845		    excludedocs force hash ignoresize ignorearch ignoreos \
846		    includedocs justdb noorder oldpackage percent prefix  \
847		    relocate replace-files replacepkgs buildroot clean    \
848		    nobuild rmsource rmspec short-circuit sign target     \
849		    help version quiet rcfile pipe dbpath root specfile)"/\
850		    c/-/"(q V K i U F e ba bb bp bc bi bl bs ta tb tp tc  \
851		    ti tl ts a f g p c d l R s h ? v vv -)"/              \
852	    n/{-f,--file}/f/ n/{-g,--group}/g/ n/--pipe/c/ n/--dbpath/d/  \
853	    n/--querybynumber/x:'<number>'/ n/--triggeredby/x:'<package>'/\
854	    n/--what{provides,requires}/x:'<capability>'/ n/--root/d/     \
855	    n/--{qf,queryformat}/x:'<format>'/ n/--buildroot/d/           \
856	    n/--excludepath/x:'<oldpath>'/  n/--prefix/x:'<newpath>'/     \
857	    n/--relocate/x:'<oldpath=newpath>'/ n/--target/x:'<platform>'/\
858	    n/--rcfile/x:'<filelist>'/ n/--specfile/x:'<specfile>'/       \
859	    n/{-[iUFep],--{install,upgrade,freshen,erase,package}}/f:*.rpm/
860
861# these conform to the latest GNU versions available at press time ...
862# updates by John Gotts <jgotts@engin.umich.edu>
863if (-X emacs) then
864  # TW note:  if your version of GNU Emacs supports the "--version" option,
865  #           uncomment this line and comment the next to automatically
866  #           detect the version, else set "_emacs_ver" to your version.
867  #set _emacs_ver=`emacs --version | sed -e 's%GNU Emacs %%' -e q | cut -d . -f1-2`
868  set _emacs_ver=21.3
869  set _emacs_dir=`which emacs | sed s%/bin/emacs%%`
870  complete emacs	c/--/"(batch terminal display no-windows no-init-file \
871			   user debug-init unibyte multibyte version help \
872			   no-site-file funcall load eval insert kill)"/ \
873		    c/-/"(t d nw q u f l -)"/ c/+/x:'<line_number>'/ \
874		    n/{-t,--terminal}/x:'<terminal>'/ n/{-d,--display}/x:'<display>'/ \
875		    n/{-u,--user}/u/ n/{-f,--funcall}/x:'<lisp_function>'/ \
876		    n@{-l,--load}@F:$_emacs_dir/share/emacs/$_emacs_ver/lisp@ \
877		    n/--eval/x:'<expression>'/ n/--insert/f/ n/*/f:^*[\#~]/
878  unset _emacs_ver _emacs_dir
879endif
880
881complete gzcat	c/--/"(force help license quiet version)"/ \
882		    c/-/"(f h L q V -)"/ n/*/f:*.{gz,Z,z,zip}/
883complete gzip	c/--/"(stdout to-stdout decompress uncompress \
884		    force help list license no-name quiet recurse \
885		    suffix test verbose version fast best)"/ \
886		    c/-/"(c d f h l L n q r S t v V 1 2 3 4 5 6 7 8 9 -)"/\
887		    n/{-S,--suffix}/x:'<file_name_suffix>'/ \
888		    n/{-d,--{de,un}compress}/f:*.{gz,Z,z,zip,taz,tgz}/ \
889		    N/{-d,--{de,un}compress}/f:*.{gz,Z,z,zip,taz,tgz}/ \
890		    n/*/f:^*.{gz,Z,z,zip,taz,tgz}/
891complete {gunzip,ungzip} c/--/"(stdout to-stdout force help list license \
892		    no-name quiet recurse suffix test verbose version)"/ \
893		    c/-/"(c f h l L n q r S t v V -)"/ \
894		    n/{-S,--suffix}/x:'<file_name_suffix>'/ \
895		    n/*/f:*.{gz,Z,z,zip,taz,tgz}/
896complete zgrep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
897		    c/-/"(A b B c C e f h i l n s v V w x)"/ \
898		    p/1/x:'<limited_regular_expression>'/ N/-*e/f/ \
899		    n/-*e/x:'<limited_regular_expression>'/ n/-*f/f/ n/*/f/
900complete zegrep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
901		    c/-/"(A b B c C e f h i l n s v V w x)"/ \
902		    p/1/x:'<full_regular_expression>'/ N/-*e/f/ \
903		    n/-*e/x:'<full_regular_expression>'/ n/-*f/f/ n/*/f/
904complete zfgrep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
905		    c/-/"(A b B c C e f h i l n s v V w x)"/ \
906		    p/1/x:'<fixed_string>'/ N/-*e/f/ \
907		    n/-*e/x:'<fixed_string>'/ n/-*f/f/ n/*/f/
908complete znew	c/-/"(f t v 9 P K)"/ n/*/f:*.Z/
909complete zmore	n/*/f:*.{gz,Z,z,zip}/
910complete zfile	n/*/f:*.{gz,Z,z,zip,taz,tgz}/
911complete ztouch	n/*/f:*.{gz,Z,z,zip,taz,tgz}/
912complete zforce	n/*/f:^*.{gz,tgz}/
913
914complete dcop 'p/1/`$:0`/ /' \
915    'p/2/`$:0 $:1 | awk \{print\ \$1\}`/ /' \
916    'p/3/`$:0 $:1 $:2 | sed "s%.* \(.*\)(.*%\1%"`/ /'
917
918
919complete grep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
920		    c/--/"(extended-regexp fixed-regexp basic-regexp \
921		    regexp file ignore-case word-regexp line-regexp \
922		    no-messages revert-match version help byte-offset \
923		    line-number with-filename no-filename quiet silent \
924		    text directories recursive files-without-match \
925		    files-with-matches count before-context after-context \
926		    context binary unix-byte-offsets)"/ \
927		    c/-/"(A a B b C c d E e F f G H h i L l n q r s U u V \
928			    v w x)"/ \
929		    p/1/x:'<limited_regular_expression>'/ N/-*e/f/ \
930		    n/-*e/x:'<limited_regular_expression>'/ n/-*f/f/ n/*/f/
931complete egrep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
932		    c/--/"(extended-regexp fixed-regexp basic-regexp \
933		    regexp file ignore-case word-regexp line-regexp \
934		    no-messages revert-match version help byte-offset \
935		    line-number with-filename no-filename quiet silent \
936		    text directories recursive files-without-match \
937		    files-with-matches count before-context after-context \
938		    context binary unix-byte-offsets)"/ \
939		    c/-/"(A a B b C c d E e F f G H h i L l n q r s U u V \
940			    v w x)"/ \
941		    p/1/x:'<full_regular_expression>'/ N/-*e/f/ \
942		    n/-*e/x:'<full_regular_expression>'/ n/-*f/f/ n/*/f/
943complete fgrep	c/-*A/x:'<#_lines_after>'/ c/-*B/x:'<#_lines_before>'/\
944		    c/--/"(extended-regexp fixed-regexp basic-regexp \
945		    regexp file ignore-case word-regexp line-regexp \
946		    no-messages revert-match version help byte-offset \
947		    line-number with-filename no-filename quiet silent \
948		    text directories recursive files-without-match \
949		    files-with-matches count before-context after-context \
950		    context binary unix-byte-offsets)"/ \
951		    c/-/"(A a B b C c d E e F f G H h i L l n q r s U u V \
952			    v w x)"/ \
953		    p/1/x:'<fixed_string>'/ N/-*e/f/ \
954		    n/-*e/x:'<fixed_string>'/ n/-*f/f/ n/*/f/
955
956complete sed	c/--/"(quiet silent version help expression file)"/   \
957		    c/-/"(n V e f -)"/ n/{-e,--expression}/x:'<script>'/  \
958		    n/{-f,--file}/f:*.sed/ N/-{e,f,-{file,expression}}/f/ \
959		    n/-/x:'<script>'/ N/-/f/ p/1/x:'<script>'/ p/2/f/
960
961complete users	c/--/"(help version)"/ p/1/x:'<accounting_file>'/
962complete who	c/--/"(heading idle count mesg message writable help \
963		    version)"/ c/-/"(H i m q s T w u -)"/ \
964		    p/1/x:'<accounting_file>'/ n/am/"(i)"/ n/are/"(you)"/
965
966complete chown	c/--/"(changes dereference no-dereference silent \
967		    quiet reference recursive verbose help version)"/ \
968		    c/-/"(c f h R v -)"/ C@[./\$~]@f@ c/*[.:]/g/ \
969		    n/-/u/: p/1/u/: n/*/f/
970complete chgrp	c/--/"(changes no-dereference silent quiet reference \
971		    recursive verbose help version)"/ \
972		    c/-/"(c f h R v -)"/ n/-/g/ p/1/g/ n/*/f/
973complete chmod	c/--/"(changes silent quiet verbose reference \
974		    recursive help version)"/ c/-/"(c f R v)"/
975complete df		c/--/"(all block-size human-readable si inodes \
976		    kilobytes local megabytes no-sync portability sync \
977		    type print-type exclude-type help version)"/ \
978		    c/-/"(a H h i k l m P T t v x)"/
979complete du		c/--/"(all block-size bytes total dereference-args \
980		    human-readable si kilobytes count-links dereference \
981		    megabytes separate-dirs summarize one-file-system \
982		    exclude-from exclude max-depth help version"/ \
983		    c/-/"(a b c D H h k L l m S s X x)"/
984
985complete cat	c/--/"(number-nonblank number squeeze-blank show-all \
986		    show-nonprinting show-ends show-tabs help version)"/ \
987		    c/-/"(A b E e n s T t u v -)"/ n/*/f/
988complete mv		c/--/"(backup force interactive update verbose suffix \
989		    version-control help version)"/ \
990		    c/-/"(b f i S u V v -)"/ \
991		    n/{-S,--suffix}/x:'<suffix>'/ \
992		    n/{-V,--version-control}/"(t numbered nil existing \
993		    never simple)"/ n/-/f/ N/-/d/ p/1/f/ p/2/d/ n/*/f/
994complete cp		c/--/"(archive backup no-dereference force \
995		    interactive link preserve parents sparse recursive \
996		    symbolic-link suffix update verbose version-control \
997		    one-file-system help version)"/ \
998		    c/-/"(a b d f i l P p R r S s u V v x -)"/ \
999		    n/-*r/d/ n/{-S,--suffix}/x:'<suffix>'/ \
1000		    n/{-V,--version-control}/"(t numbered nil existing \
1001		    never simple)"/ n/-/f/ N/-/d/ p/1/f/ p/2/d/ n/*/f/
1002complete ln		c/--/"(backup directory force no-dereference \
1003		    interactive symbolic suffix verbose version-control \
1004		    help version)"/ \
1005		    c/-/"(b d F f i n S s V v -)"/ \
1006		    n/{-S,--suffix}/x:'<suffix>'/ \
1007		    n/{-V,--version-control}/"(t numbered nil existing \
1008		    never simple)"/ n/-*/f/ N/-*/x:'<link_name>'/ \
1009		    p/1/f/ p/2/x:'<link_name>'/
1010complete touch	c/--/"(date reference time help version)"/ \
1011		    c/-/"(a c d f m r t -)"/ \
1012		    n/{-d,--date}/x:'<date_string>'/ \
1013		    c/--time/"(access atime mtime modify use)"/ \
1014		    n/{-r,--file}/f/ n/-t/x:'<time_stamp>'/ n/*/f/
1015complete mkdir	c/--/"(mode parents verbose help version)"/ \
1016		    c/-/"(p m -)"/ \
1017		    n/{-m,--mode}/x:'<mode>'/ n/*/d/
1018complete rmdir	c/--/"(ignore-fail-on-non-empty parents verbose help \
1019		    version)"/ c/-/"(p -)"/ n/*/d/
1020complete env 	'c/*=/f/' 'p/1/e/=/' 'p/2/c/'
1021
1022complete tar	c/-[Acru]*/"(b B C f F g G h i l L M N o P \
1023		    R S T v V w W X z Z)"/ \
1024		    c/-[dtx]*/"( B C f F g G i k K m M O p P \
1025		    R s S T v w x X z Z)"/ \
1026		    p/1/"(A c d r t u x -A -c -d -r -t -u -x \
1027		    --catenate --concatenate --create --diff --compare \
1028		    --delete --append --list --update --extract --get \
1029		    --help --version)"/ \
1030		    c/--/"(catenate concatenate create diff compare \
1031		    delete append list update extract get atime-preserve \
1032		    block-size read-full-blocks directory checkpoint file \
1033		    force-local info-script new-volume-script incremental \
1034		    listed-incremental dereference ignore-zeros \
1035		    ignore-failed-read keep-old-files starting-file \
1036		    one-file-system tape-length modification-time \
1037		    multi-volume after-date newer old-archive portability \
1038		    to-stdout same-permissions preserve-permissions \
1039		    absolute-paths preserve record-number remove-files \
1040		    same-order preserve-order same-owner sparse \
1041		    files-from null totals verbose label version \
1042		    interactive confirmation verify exclude exclude-from \
1043		    compress uncompress gzip ungzip use-compress-program \
1044		    block-compress help version)"/ \
1045		    c/-/"(b B C f F g G h i k K l L m M N o O p P R s S \
1046		    T v V w W X z Z 0 1 2 3 4 5 6 7 -)"/ \
1047		    C@/dev@f@ \
1048		    n/-c*f/x:'<new_tar_file, device_file, or "-">'/ \
1049		    n/{-[Adrtux]j*f,--file}/f:*.{tar.bz2,tbz}/ \
1050		    n/{-[Adrtux]z*f,--file}/f:*.{tar.gz,tgz}/ \
1051		    n/{-[Adrtux]Z*f,--file}/f:*.{tar.Z,taz}/ \
1052		    n/{-[Adrtux]*f,--file}/f:*.tar/ \
1053		    N/{-xj*f,--file}/'`tar -tjf $:-1`'/ \
1054		    N/{-xz*f,--file}/'`tar -tzf $:-1`'/ \
1055		    N/{-xZ*f,--file}/'`tar -tZf $:-1`'/ \
1056		    N/{-x*f,--file}/'`tar -tf $:-1`'/ \
1057		    n/--use-compress-program/c/ \
1058		    n/{-b,--block-size}/x:'<block_size>'/ \
1059		    n/{-V,--label}/x:'<volume_label>'/ \
1060		    n/{-N,--{after-date,newer}}/x:'<date>'/ \
1061		    n/{-L,--tape-length}/x:'<tape_length_in_kB>'/ \
1062		    n/{-C,--directory}/d/ \
1063		    N/{-C,--directory}/'`\ls $:-1`'/ \
1064		    n/-[0-7]/"(l m h)"/
1065
1066switch ( "$OSTYPE" )
1067case linux:
1068  # Linux filesystems
1069  complete  mount	c/-/"(a f F h l n o r s t U v V w)"/ n/-[hV]/n/ \
1070		    n/-o/x:'<options>'/ n/-t/x:'<vfstype>'/ \
1071		    n/-L/x:'<label>'/ n/-U/x:'<uuid>'/ \
1072		    n@*@'`grep -v "^#" /etc/fstab | tr -s " " "	 " | cut -f 2`'@
1073  complete umount	c/-/"(a h n r t v V)"/ n/-t/x:'<vfstype>'/ \
1074		      n/*/'`mount | cut -d " " -f 3`'/
1075  breaksw
1076case sunos*:
1077case solaris:
1078  # Solaris filesystems
1079  complete  mount	c/-/"(a F m o O p r v V)"/ n/-p/n/ n/-v/n/ \
1080		    n/-o/x:'<FSType_options>'/ \
1081		    n@-F@'`\ls -1 /usr/lib/fs`'@ \
1082		    n@*@'`grep -v "^#" /etc/vfstab | tr -s " " "	 " | cut -f 3`'@
1083  complete umount	c/-/"(a o V)"/ n/-o/x:'<FSType_options>'/ \
1084		    n/*/'`mount | cut -d " " -f 1`'/
1085  complete  mountall	c/-/"(F l r)"/ n@-F@'`\ls -1 /usr/lib/fs`'@
1086  complete umountall	c/-/"(F h k l r s)"/ n@-F@'`\ls -1 /usr/lib/fs`'@ \
1087		    n/-h/'`df -k | cut -s -d ":" -f 1 | sort -u`'/
1088  breaksw
1089case cygwin:
1090  # Cygwin mounts
1091  complete  mount	c/-/"(b c f h m o p s t u v x E X)"/ n/-[hmpv]/n/ \
1092		    n/-c/x:'/'/ \
1093		    n/-o/"(user system binary text exec notexec cygexec nosuid managed)"/ \
1094		    n@*@'`mount -p | tail -1 | cut -d " " -f 1 | xargs ls -1 | awk '"'"'{print $1":/"; } END{print "//";}'"'"'`'@
1095  complete umount	c/-/"(A c h s S u U v)"/ n/-[AhSUv]/n/ \
1096		    n@*@'`mount | grep -v noumount | cut -d " " -f 3`'@
1097  breaksw
1098endsw
1099
1100# these deal with NIS (formerly YP); if it's not running you don't need 'em
1101if (-X domainname) then
1102  set _domain = "`domainname`"
1103  set _ypdir  = /var/yp	# directory where NIS (YP) maps are kept
1104  if ("$_domain" != "" && "$_domain" != "noname") then
1105    complete domainname p@1@D:$_ypdir@" " n@*@n@
1106    complete ypcat	    c@-@"(d k t x)"@ n@-x@n@ n@-d@D:$_ypdir@" " \
1107			N@-d@\`\\ls\ -1\ $_ypdir/\$:-1\ \|\ sed\ -n\ s%\\\\.pag\\\$%%p\`@ \
1108			n@*@\`\\ls\ -1\ $_ypdir/$_domain\ \|\ sed\ -n\ s%\\\\.pag\\\$%%p\`@
1109    complete ypmatch    c@-@"(d k t x)"@ n@-x@n@ n@-d@D:$_ypdir@" " \
1110			N@-d@x:'<key ...>'@ n@-@x:'<key ...>'@ p@1@x:'<key ...>'@ \
1111			n@*@\`\\ls\ -1\ $_ypdir/$_domain\ \|\ sed\ -n\ s%\\\\.pag\\\$%%p\`@
1112    complete ypwhich    c@-@"(d m t x V1 V2)"@ n@-x@n@ n@-d@D:$_ypdir@" " \
1113			n@-m@\`\\ls\ -1\ $_ypdir/$_domain\ \|\ sed\ -n\ s%\\\\.pag\\\$%%p\`@ \
1114			N@-m@n@ n@*@\$hosts@
1115  endif
1116  unset _domain _ypdir
1117endif
1118
1119complete make \
1120    'n/-f/f/' \
1121    'c/*=/f/' \
1122    'n@*@`cat -s GNUmakefile Makefile makefile |& sed -n -e "/No such file/d" -e "/^[^     #].*:/s/:.*//p"`@'
1123
1124if ( -f /etc/printcap ) then
1125    set printers=(`sed -n -e "/^[^     #].*:/s/:.*//p" /etc/printcap`)
1126
1127    complete lpr    'c/-P/$printers/'
1128    complete lpq    'c/-P/$printers/'
1129    complete lprm   'c/-P/$printers/'
1130    complete lpquota        'p/1/(-Qprlogger)/' 'c/-P/$printers/'
1131    complete dvips  'c/-P/$printers/' 'n/-o/f:*.{ps,PS}/' 'n/*/f:*.dvi/'
1132    complete dvilj	'p/*/f:*.dvi/'
1133endif
1134
1135# From Alphonse Bendt
1136complete ant \
1137     'n/-f/f:*.xml/' \
1138	  'n@*@`cat build.xml | sed -n -e "s/[ \t]*<target[\t\n]*name=.\([a-zA-Z0-9_:]*\).*/\1/p"`@'
1139
1140if ($?P4CLIENT && -X perl) then
1141    # This is from Greg Allen.
1142    set p4cmds=(add branch branches commands change changes client clients \
1143	counter counters delete depot depots describe diff diff2 \
1144	edit filelog files fix fixes fstat group groups have help \
1145	info integrate integrated job jobs jobspec label labels \
1146	labelsync lock obliterate opened passwd print protect rename \
1147	reopen resolve resolved revert review reviews set submit \
1148	sync triggers unlock user users verify where)
1149    complete p4 'p/1/$p4cmds/' 'n/help/$p4cmds/' \
1150	'n%{-l,label}%`p4 labels | sed "s/Label \([^ ]*\) .*/\1/"`%' \
1151	'n%-t%`p4 $:1s | sed "s/[^ ]* \([^ ]*\) .*/\1/"`%' \
1152	'c%*@%`p4 labels | sed "s/Label \([^ ]*\) .*/\1/"`%' \
1153	'c@//*/*@`p4 files $:-0... |& perl -nle "m%\Q$:-0\E([^#][^/# ] \
1154	*)%;print "\$"1 if \\\!/no such/&&\!"\$"h{"\$"1}++"`@@' \
1155	'c@//@`p4 depots | sed "s/Depot \([^ ]*\) .*/\1/"`@/@'
1156endif
1157
1158
1159if (! $?traditional_complete) then
1160    uncomplete vi
1161    uncomplete vim
1162    complete {vi,vim,gvim,nvi,elvis} 	n/*/f:^*.{o,a,so,sa,aux,dvi,log,fig,bbl,blg,bst,idx,ilg,ind,toc}/
1163    complete {ispell,spell,spellword}	'n@-d@`ls /usr/lib/ispell/*.aff | sed -e "s/\.aff//" `@' 'n/*/f:^*.{o,a,so,sa,aux,dvi,log,fig,bbl,blg,bst,idx,ilg,ind,toc}/'
1164    complete elm	'n/-[Ai]/f/' 'c@=@F:$HOME/Mail/@' 'n/-s/x:\<subject\>/'
1165    complete ncftp	'n@*@`sed -e '1,2d' $HOME/.ncftp/bookmarks | cut -f 1,2 -d "," | tr "," "\012" | sort | uniq ` '@
1166    complete bibtex	'n@*@`ls *.aux | sed -e "s/\.aux//"`'@
1167    complete dvi2tty	n/*/f:*.dvi/	# Only files that match *.dvi
1168    uncomplete gv
1169    uncomplete ghostview
1170    complete {gv,ghostview}	'n/*/f:*.{ps,eps,epsi}/'
1171    complete enscript \
1172	    'c/--/(columns= pages= header= no-header truncate-lines \
1173		    line-numbers setpagedevice= escapes font= \
1174		    header-font= fancy-header no-job-header \
1175		    highlight-bars indent= filter= borders page-prefeed \
1176		    no-page-prefeed lineprinter lines-per-page= mail \
1177		    media= copies= newline= output= missing-characters \
1178		    printer= quiet silent landscape portrait \
1179		    baselineskip= statusdict= title= tabsize= underlay= \
1180		    verbose version encoding pass-through download-font= \
1181		    filter-stdin= help highlight-bar-gray= list-media \
1182		    list-options non-printable-format= page-label-format= \
1183		    printer-options= ul-angle= ul-font= ul-gray= \
1184		    ul-position= ul-style= \
1185		 )/'
1186endif
1187
1188complete dpkg \
1189	    'c/--{admindir,instdir,root}=/d/' \
1190	    'c/--debug=/n/' \
1191	    'c/--{admindir,debug,instdir,root}/(=)//' \
1192	    'c/--/(admindir= debug= instdir= root= \
1193		    assert-support-predepends assert-working-epoch \
1194		    audit auto-deconfigure clear-avail \
1195		    compare-versions configure contents control \
1196		    extract force-bad-path field \
1197		    force-configure-any force-conflicts \
1198		    force-depends force-depends-version force-help \
1199		    force-hold force-non-root \
1200		    force-overwrite-diverted \
1201		    force-remove-essential force-remove-reinstreq \
1202		    forget-old-unavail fsys-tarfile get-selections \
1203		    help ignore-depends info install largemem \
1204		    license list listfiles merge-avail no-act \
1205		    pending predep-package print-architecture \
1206		    print-gnu-build-architecture \
1207		    print-installation-architecture print-avail \
1208		    purge record-avail recursive refuse-downgrade \
1209		    remove search set-selections selected-only \
1210		    skip-same-version smallmem status unpack \
1211		    update-avail version vextract \
1212		  )//' \
1213	    'n/{-l}/`dpkg -l|awk \{print\ \$2\}`/' \
1214	    'n/*/f:*.deb'/
1215complete dpkg-deb 	   'c/--{build}=/d/' \
1216		       'c/--/(build contents info field control extract \
1217			     vextract fsys-tarfile help version \
1218			     license)//' \
1219		       'n/*/f:*.deb/'
1220complete apt-get \
1221	    'c/--/(build config-file diff-only download-only \
1222	       fix-broken fix-missing force-yes help ignore-hold no-download \
1223	       no-upgrade option print-uris purge reinstall quiet simulate \
1224	       show-upgraded target-release tar-only version yes )/' \
1225	    'c/-/(b c= d f h m o= q qq s t x y )/' \
1226	    'n/{source,build-dep}/x:<pkgname>/' \
1227	    'n/{remove}/`dpkg -l|grep ^ii|awk \{print\ \$2\}`/' \
1228	    'n/{install}/`apt-cache pkgnames | sort`/' \
1229	    'C/*/(update upgrade dselect-upgrade source \
1230	       build-dep check clean autoclean install remove)/'
1231complete apt-cache \
1232	    'c/--/(all-versions config-file generate full help important \
1233	    names-only option pkg-cache quiet recurse src-cache version )/' \
1234	    'c/-/(c= h i o= p= q s= v)/' \
1235	    'n/{search}/x:<regex>/' \
1236	    'n/{pkgnames,policy,show,showpkg,depends,dotty}/`apt-cache pkgnames | sort`/' \
1237	    'C/*/(add gencaches showpkg stats dump dumpavail unmet show \
1238	    search depends pkgnames dotty policy )/'
1239
1240switch ( "${OSTYPE}" )
1241case FreeBSD:
1242  set commands=()
1243  foreach p (fast force one quiet "")
1244    foreach c (enabled poll rcvar reload restart start status stop)
1245      set commands=($commands $p$c)
1246    end
1247  end
1248  complete service \
1249    n/-R/n/ \
1250    n/-e/n/ \
1251    n/-l/n/ \
1252    n/-r/n/ \
1253    c/-/"(R e l r v)"/ \
1254    p/2/"($commands)"/ \
1255    p@1@'`service -l`'@
1256  unset commands c p
1257  breaksw
1258case linux:
1259  if ( -d /etc/init.d ) then
1260    set rcdir=/etc/init.d/
1261  else
1262    set rcdir=/etc/rc.d/
1263  endif
1264  complete service \
1265    p/2/"(--full-restart force-reload reload restart start stop status)"/ \
1266    c/--/"(help status-all version)"/ \
1267    c/-/"(- h)"/ \
1268    p@1@F:$rcdir@
1269  unset rcdir
1270  breaksw
1271endsw
1272
1273if ( $?_unset_noglob ) unset noglob _unset_noglob
1274
1275end:
1276unset _has_complete
1277onintr
1278