-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zcompdump
1215 lines (1207 loc) · 24.5 KB
/
.zcompdump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#files: 528 version: 4.3.4
_comps=(
- _precommand
-array-value- _value
-assign-parameter- _assign
-brace-parameter- _brace_parameter
-command- _autocd
-command-line- _normal
-condition- _condition
-default- _default
-equal- _equal
-first- _first
-math- _math
-parameter- _parameter
-redirect- _redirect
-redirect-,-default-,-default- _files
-redirect-,\<,bunzip2 _bzip2
-redirect-,\<,bzip2 _bzip2
-redirect-,\<,compress _compress
-redirect-,\<,gunzip _gzip
-redirect-,\<,gzip _gzip
-redirect-,\<,uncompress _compress
-redirect-,\>,bzip2 _bzip2
-redirect-,\>,compress _compress
-redirect-,\>,gzip _gzip
-subscript- _subscript
-tilde- _tilde
-value- _value
-value-,-default-,-default- _value
-value-,ANT_ARGS,-default- _ant
-value-,CFLAGS,-default- _gcc
-value-,CPPFLAGS,-default- _gcc
-value-,DISPLAY,-default- _x_display
-value-,GREP_OPTIONS,-default- _grep
-value-,GZIP,-default- _gzip
-value-,LANG,-default- _locales
-value-,LANGUAGE,-default- _locales
-value-,LDFLAGS,-default- _gcc
-value-,LESS,-default- _less
-value-,LESSCHARSET,-default- _less
-value-,LPDEST,-default- _printers
-value-,P4CLIENT,-default- _perforce
-value-,P4MERGE,-default- _perforce
-value-,P4PORT,-default- _perforce
-value-,P4USER,-default- _perforce
-value-,PERLDOC,-default- _perldoc
-value-,PRINTER,-default- _printers
-value-,TERM,-default- _terminals
-value-,TERMINFO_DIRS,-default- _dir_list
-value-,TZ,-default- _time_zone
-value-,VALGRIND_OPTS,-default- _valgrind
-value-,WWW_HOME,-default- _urls
-value-,XML_CATALOG_FILES,-default- _xmlsoft
-vared- _in_vared
. _source
Mail _mail
Mosaic _webbrowser
a2dismod _a2utils
a2dissite _a2utils
a2enmod _a2utils
a2ensite _a2utils
a2ps _a2ps
aaaa _hosts
aap _aap
acpi _acpi
acpitool _acpitool
acroread _acroread
admin _sccs
ali _mh
alias _alias
amaya _webbrowser
analyseplugin _analyseplugin
animate _imagemagick
anno _mh
ant _ant
antiword _antiword
apache2ctl _apachectl
apachectl _apachectl
apm _apm
appletviewer _java
apropos _man
apt-cache _apt
apt-cdrom _apt
apt-config _apt
apt-file _apt-file
apt-get _apt
apt-move _apt-move
apt-show-versions _apt-show-versions
aptitude _aptitude
arena _webbrowser
arp _arp
arping _arping
attr _attr
auto-apt _auto-apt
autoload _typeset
bash _sh
baz _baz
bg _jobs_bg
bindkey _bindkey
bison _bison
bogofilter _bogofilter
bogotune _bogofilter
bogoutil _bogofilter
brctl _brctl
btdownloadcurses _bittorrent
btdownloadgui _bittorrent
btdownloadheadless _bittorrent
btlaunchmany _bittorrent
btlaunchmanycurses _bittorrent
btmakemetafile _bittorrent
btreannounce _bittorrent
btrename _bittorrent
bts _bts
btshowmetainfo _bittorrent
bttrack _bittorrent
bug _bug
buildhash _ispell
builtin _builtin
bunzip2 _bzip2
burst _mh
bzcat _bzip2
bzip2 _bzip2
bzip2recover _bzip2
bzr _bzr
cal _cal
catchsegv _precommand
ccal _ccal
cd _cd
cdbs-edit-patch _cdbs-edit-patch
cdc _sccs
cdcd _cdcd
cdrecord _cdrecord
certtool _gnutls
cftp _twisted
chage _users
chdir _cd
chflags _chflags
chfn _users
chgrp _chown
chimera _webbrowser
chkconfig _chkconfig
chmod _chmod
chown _chown
chsh _users
ci _rcs
ckeygen _twisted
clear _nothing
co _rcs
comb _sccs
combine _imagemagick
comm _comm
command _command
comp _mh
compdef _compdef
composite _imagemagick
compress _compress
conch _twisted
configure _configure
convert _imagemagick
cowsay _cowsay
cowthink _cowsay
cp _cp
cpio _cpio
cplay _cplay
crsh _cssh
csh _sh
cssh _cssh
curl _urls
cvs _cvs
cvsup _cvsup
cygcheck _cygcheck
cygcheck.exe _cygcheck
cygpath _cygpath
cygpath.exe _cygpath
cygrunsrv _cygrunsrv
cygrunsrv.exe _cygrunsrv
cygserver _cygserver
cygserver.exe _cygserver
cygstart _cygstart
cygstart.exe _cygstart
dak _dak
darcs _darcs
date _date
dch _debchange
dchroot _dchroot
dchroot-dsa _dchroot-dsa
dcop _dcop
dcopclient _dcop
dcopfind _dcop
dcopobject _dcop
dcopref _dcop
dcopstart _dcop
dd _dd
debchange _debchange
debdiff _debdiff
debfoster _debfoster
debsign _debsign
declare _typeset
defaults _defaults
delta _sccs
df _directories
dhclient _dhclient
dhclient3 _dhclient
dict _dict
diff _diff
diffstat _diffstat
dillo _webbrowser
dircmp _directories
dirs _dirs
disable _disable
disown _jobs_fg
display _imagemagick
dist _mh
dlocate _dlocate
dmake _make
domainname _yp
dosdel _floppy
dosread _floppy
dpkg _dpkg
dpkg-cross _dpkg-cross
dpkg-deb _dpkg
dpkg-query _dpkg
dpkg-reconfigure _dpkg
dpkg-source _dpkg_source
dput _dput
du _du
dumper _dumper
dumper.exe _dumper
dupload _dupload
dvibook _dvi
dviconcat _dvi
dvicopy _dvi
dvidvi _dvi
dvips _dvi
dviselect _dvi
dvitodvi _dvi
dvitype _dvi
ecasound _ecasound
echotc _echotc
echoti _echoti
egrep _grep
elinks _elinks
elm _elm
emulate _emulate
enable _enable
enscript _enscript
env _env
epsffit _psutils
eval _precommand
eview _vim
evim _vim
exec _precommand
exim _vim
explodepkg _pkgtool
export _typeset
express _webbrowser
extcheck _java
extractres _psutils
fakeroot _fakeroot
false _nothing
fc _fc
fetchmail _fetchmail
fg _jobs_fg
fgrep _grep
figlet _figlet
find _find
findaffix _ispell
finger _finger
fink _fink
firefox _mozilla
fixdlsrps _psutils
fixfmps _psutils
fixmacps _psutils
fixpsditps _psutils
fixpspps _psutils
fixscribeps _psutils
fixtpps _psutils
fixwfwps _psutils
fixwpps _psutils
fixwwps _psutils
flasher _flasher
flex _flex
flist _mh
flists _mh
float _typeset
fned _zed
folder _mh
folders _mh
fortune _fortune
forw _mh
fsh _fsh
ftp _hosts
functions _typeset
fuser _fuser
fusermount _fusermount
fwhois _whois
g++ _gcc
galeon _webbrowser
gcc _gcc
gdb _gdb
gdiff _diff
get _sccs
getafm _psutils
getclip _getclip
getclip.exe _getclip
getconf _getconf
getent _getent
getfacl _getfacl
getfacl.exe _getfacl
getfattr _attr
getmail _getmail
getopts _vars
gex _vim
ggv _gnome-gv
ghostscript _gs
ghostview _pspdf
git _git
git-add _git
git-am _git
git-apply _git
git-applymbox _git
git-applypatch _git
git-archimport _git
git-bisect _git
git-branch _git
git-cat-file _git
git-check-ref-format _git
git-checkout _git
git-checkout-index _git
git-cherry _git
git-cherry-pick _git
git-clone _git
git-clone-pack _git
git-commit _git
git-commit-tree _git
git-convert-objects _git
git-count-objects _git
git-cvsimport _git
git-daemon _git
git-diff _git
git-diff-files _git
git-diff-index _git
git-diff-stages _git
git-diff-tree _git
git-fetch _git
git-fetch-pack _git
git-format-patch _git
git-fsck-objects _git
git-get-tar-commit-id _git
git-grep _git
git-hash-object _git
git-http-fetch _git
git-index-pack _git
git-init-db _git
git-local-fetch _git
git-log _git
git-lost-found _git
git-ls-files _git
git-ls-remote _git
git-ls-tree _git
git-mailinfo _git
git-mailsplit _git
git-merge _git
git-merge-base _git
git-merge-index _git
git-merge-one-file _git
git-mktag _git
git-mv _git
git-name-rev _git
git-octopus _git
git-pack-objects _git
git-patch-id _git
git-peek-remote _git
git-prune _git
git-prune-packed _git
git-pull _git
git-push _git
git-read-tree _git
git-rebase _git
git-receive-pack _git
git-relink _git
git-repack _git
git-request-pull _git
git-reset _git
git-resolve _git
git-rev-list _git
git-revert _git
git-send-email _git
git-send-pack _git
git-shortlog _git
git-show-branch _git
git-show-index _git
git-ssh-fetch _git
git-ssh-upload _git
git-status _git
git-stripspace _git
git-svnimport _git
git-symbolic-ref _git
git-tag _git
git-tar-tree _git
git-unpack-file _git
git-unpack-objects _git
git-update-index _git
git-update-ref _git
git-update-server-info _git
git-upload-pack _git
git-var _git
git-verify-pack _git
git-verify-tag _git
git-whatchanged _git
git-write-tree _git
global _global
gls _ls
gmake _make
gmplayer _mplayer
gnome-gv _gnome-gv
gnutls-cli _gnutls
gnutls-cli-debug _gnutls
gpg _gpg
gpgv _gpg
gphoto2 _gphoto2
gprof _gprof
gqview _gqview
grail _webbrowser
grep _grep
groff _groff
groupadd _user_admin
groupdel _groups
groupmod _user_admin
groups _users
gs _gs
gsbj _pspdf
gsdj _pspdf
gsdj500 _pspdf
gslj _pspdf
gslp _pspdf
gsnd _pspdf
gtar _tar
gunzip _gzip
gv _gv
gview _vim
gvim _vim
gvimdiff _vim
gzcat _gzip
gzilla _webbrowser
gzip _gzip
hash _hash
hdiutil _hdiutil
help _sccs
hg _mercurial
history _fc
host _hosts
hotjava _webbrowser
iceweasel _mozilla
icombine _ispell
iconv _iconv
identify _imagemagick
ifconfig _ifconfig
ifdown _net_interfaces
ifup _net_interfaces
ijoin _ispell
import _imagemagick
inc _mh
includeres _psutils
info _texinfo
infocmp _terminals
insmod _modutils
install-info _texinfo
installpkg _pkgtool
integer _typeset
invoke-rc.d _invoke-rc.d
ip _ip
iptables _iptables
iptables-restore _iptables
iptables-save _iptables
irssi _irssi
ispell _ispell
iwconfig _iwconfig
jadetex _tex
jar _java
jarsigner _java
java _java
javac _java
javadoc _java
javah _java
javap _java
jdb _java
jobs _jobs_builtin
joe _joe
keytool _java
kfmclient _kfmclient
kill _kill
killall _killall
killall5 _killall
kldload _kld
kldunload _kld
knock _knock
konqueror _webbrowser
kpdf _pdf
ksh _sh
kvno _kvno
last _last
lastb _last
latex _tex
less _less
let _math
lftp _ncftp
light _webbrowser
limit _limit
linda _linda
links _links
lintian _lintian
linux _uml
loadkeys _loadkeys
local _typeset
locate _locate
log _nothing
logname _nothing
look _look
lore _twisted
losetup _losetup
lp _lp
lpq _lp
lpr _lp
lprm _lp
ls _ls
lscfg _lscfg
lsdev _lsdev
lslv _lslv
lsmod _modutils
lsof _lsof
lspv _lspv
lsvg _lsvg
lynx _lynx
lzop _lzop
m-a _module-assistant
madison _madison
mail _mail
mailx _mail
make _make
make-kpkg _make-kpkg
makeinfo _texinfo
makepkg _pkgtool
man _man
manhole _twisted
mark _mh
mattrib _mtools
mcd _mtools
mcopy _mtools
mdel _mtools
mdeltree _mtools
mdir _mtools
mdu _mtools
mencal _mencal
mere _mere
merge _rcs
mergechanges _mergechanges
metaflac _metaflac
mformat _mtools
mgv _pspdf
mhlist _mh
mhmail _mh
mhn _mh
mhparam _mh
mhpath _mh
mhshow _mh
mhstore _mh
mii-tool _mii-tool
mkdir _mkdir
mkshortcut _mkshortcut
mkshortcut.exe _mkshortcut
mktap _twisted
mkzsh _mkzsh
mkzsh.exe _mkzsh
mlabel _mtools
mlocate _locate
mmd _mtools
mmm _webbrowser
mmount _mtools
mmove _mtools
modinfo _modutils
modprobe _modutils
module _module
module-assistant _module-assistant
mogrify _imagemagick
mondoarchive _mondo
montage _imagemagick
mount _mount
mozilla _mozilla
mozilla-firefox _mozilla
mozilla-xremote-client _mozilla
mpc _mpc
mplayer _mplayer
mrd _mtools
mread _mtools
mren _mtools
msgchk _mh
mt _mt
mtn _monotone
mtoolstest _mtools
mtr _mtr
mtype _mtools
munchlist _ispell
mush _mail
mutt _mutt
mx _hosts
mysql _mysql_utils
mysqladmin _mysql_utils
mysqldiff _mysqldiff
mysqldump _mysql_utils
mysqlimport _mysql_utils
mysqlshow _mysql_utils
nail _mail
native2ascii _java
nautilus _nautilus
nc _netcat
ncal _cal
ncftp _ncftp
ncl _nedit
nedit _nedit
nedit-nc _nedit
netcat _netcat
netrik _webbrowser
netscape _netscape
newgrp _groups
next _mh
nice _nice
nmap _nmap
nmblookup _samba
nocorrect _precommand
noglob _precommand
nohup _precommand
ns _hosts
nslookup _nslookup
ntalk _other_accounts
odme _object_classes
odmget _object_classes
odmshow _object_classes
ogg123 _vorbis
oggdec _vorbis
oggenc _vorbis
ogginfo _vorbis
open _open
opera _webbrowser
p4 _perforce
p4d _perforce
pack _pack
packf _mh
parsehdlist _urpmi
passwd _users
patch _patch
pax _pax
pcat _pack
pcred _pids
pdf2dsc _pdf
pdf2ps _pdf
pdffonts _pdf
pdfimages _pdf
pdfinfo _pdf
pdfjadetex _tex
pdflatex _tex
pdfopt _pdf
pdftopbm _pdf
pdftops _pdf
pdftotext _pdf
perl _perl
perldoc _perldoc
pfiles _pids
pflags _pids
phoenix _webbrowser
php _php
pick _mh
pine _pine
pinef _pine
ping _ping
piuparts _piuparts
pkg-config _pkg-config
pkg_add _bsd_pkg
pkg_create _bsd_pkg
pkg_delete _bsd_pkg
pkg_info _bsd_pkg
pkgtool _pkgtool
pldd _pids
pmake _make
pman _perl_modules
pmap _pids
pmcat _perl_modules
pmdesc _perl_modules
pmeth _perl_modules
pmexp _perl_modules
pmfunc _perl_modules
pmload _perl_modules
pmls _perl_modules
pmpath _perl_modules
pmvers _perl_modules
podgrep _perl_modules
podpath _perl_modules
podtoc _perl_modules
poff _pon
policytool _java
pon _pon
popd _directory_stack
postsuper _postfix
prcs _prcs
prev _mh
print _print
printenv _printenv
prompt _prompt
prs _sccs
prt _sccs
prun _pids
ps2ascii _pspdf
ps2epsi _ps
ps2pdf _ps
ps2pdf12 _ps
ps2pdf13 _ps
ps2pdf14 _ps
ps2pdfwr _ps
ps2ps _ps
psbook _psutils
pscp _pscp
pscp.exe _pscp
psig _pids
psmerge _psutils
psmulti _ps
psnup _psutils
psresize _psutils
psselect _psutils
pstack _pids
pstoedit _pspdf
pstop _pids
pstops _psutils
pstotgif _pspdf
pswrap _ps
ptree _pids
pump _pump
pushd _cd
putclip _putclip
putclip.exe _putclip
pwait _pids
pwdx _pids
pyhtmlizer _twisted
python _python
qemu _qemu
qiv _qiv
qtplay _qtplay
querybts _bug
quilt _quilt
r _fc
raggle _raggle
rake _rake
rar _rar
rc _sh
rcp _rlogin
rcs _rcs
rcsdiff _rcs
read _read
readonly _typeset
refile _mh
rehash _hash
removepkg _pkgtool
remsh _rlogin
renice _renice
repl _mh
reportbug _bug
retawq _webbrowser
rgview _vim
rgvim _vim
ri _ri
rlogin _rlogin
rmadison _madison
rmdel _sccs
rmdir _directories
rmf _mh
rmic _java
rmid _java
rmiregistry _java
rmm _mh
rmmod _modutils
rpm _rpm
rsh _rlogin
rsync _rsync
rtin _tin
rubber _rubber
rubber-info _rubber
rubber-pipe _rubber
ruby _ruby
rup _hosts
rusage _precommand
rview _vim
rvim _vim
rwho _hosts
sabcmd _sablotron
sact _sccs
scan _mh
sccs _sccs
sccsdiff _sccs
sched _sched
schroot _schroot
scp _ssh
screen _screen
sed _sed
serialver _java
service _service
set _set
setfattr _attr
setopt _setopt
sftp _ssh
sh _sh
shift _arrays
show _mh
showchar _psutils
showmount _showmount
sisu _sisu
skipstone _webbrowser
slitex _tex
slocate _locate
slogin _ssh
slrn _slrn
smbclient _samba
smbcontrol _samba
smbstatus _samba
smit _smit
smitty _smit
soa _hosts
socket _socket
softwareupdate _softwareupdate
sortm _mh
source _source
spamassassin _spamassassin
sqsh _sqsh
sr _surfraw
srptool _gnutls
ssh _ssh
ssh-add _ssh
ssh-agent _ssh
ssh-keygen _ssh
sshfs _sshfs
star _tar
stat _stat
strip _strip
stty _stty
su _su
sudo _sudo
surfraw _surfraw
svn _subversion
svnadmin _subversion
svnadmin-static _subversion
sync _nothing
sysctl _sysctl
talk _other_accounts
tap2deb _twisted
tap2rpm _twisted
tapconvert _twisted
tar _tar
tardy _tardy
tcptraceroute _tcptraceroute
tcsh _sh
telnet _telnet
tex _tex
texi2dvi _texinfo
texindex _texinfo
tidy _tidy
time _precommand
times _nothing
tin _tin
tkconch _twisted
tkinfo _texinfo
tkmktap _twisted
tla _tla
todo.sh _todo.sh
toilet _toilet
totdconfig _totd
tpb _tpb
tpconfig _tpconfig
tpkg-debarch _toolchain-source
tpkg-install _toolchain-source
tpkg-install-libc _toolchain-source
tpkg-make _toolchain-source
tpkg-update _toolchain-source
tracepath _tracepath
tracepath6 _tracepath
traceroute _hosts
trap _trap
trial _twisted
true _nothing
tryaffix _ispell
ttyctl _ttyctl
tunctl _uml
tune2fs _tune2fs
twistd _twisted
txt _hosts
type _which
typeset _typeset
ulimit _ulimit
uml_mconsole _uml
uml_moo _uml
uml_switch _uml
umount _mount
unace _unace
unalias _aliases
uncompress _compress
unexpand _unexpand
unfunction _functions
unget _sccs
unhash _unhash
uniq _uniq
unlimit _limits
unpack _pack
unrar _rar
unset _vars
unsetopt _unsetopt
unzip _zip
update-alternatives _update-alternatives
update-rc.d _update-rc.d
upgradepkg _pkgtool
urpme _urpmi
urpmf _urpmi
urpmi _urpmi
urpmi.addmedia _urpmi
urpmi.removemedia _urpmi
urpmi.update _urpmi
urpmq _urpmi
urxvt _urxvt
uscan _uscan
useradd _user_admin
userdel _users
usermod _user_admin
val _sccs
valgrind _valgrind
vared _vared
vim _vim
vimdiff _vim
vncserver _vnc
vncviewer _vnc
vorbiscomment _vorbiscomment
vserver _vserver
vux _vux
vuxctl _vux
w3m _w3m
wait _wait
wajig _wajig
wanna-build _wanna-build
websetroot _twisted
wget _wget
what _sccs
whatis _man
whence _which
where _which
whereis _whereis
which _which
whoami _nothing
whois _whois
whom _mh
wiggle _wiggle
wodim _cdrecord
write _users_on
www _webbrowser
xargs _xargs
xauth _xauth
xdpyinfo _x_utils
xdvi _xdvi
xev _x_utils
xfd _x_utils
xfig _xfig
xfontsel _x_utils
xhost _x_utils
xkill _x_utils
xli _xloadimage
xloadimage _xloadimage
xmllint _xmlsoft
xmodmap _xmodmap
xmosaic _webbrowser
xon _x_utils
xpdf _xpdf
xping _hosts
xrdb _x_utils
xscreensaver-command _xscreensaver
xset _xset
xsetbg _xloadimage
xsetroot _x_utils
xsltproc _xmlsoft
xterm _xterm
xtightvncviewer _vnc
xtp _imagemagick
xv _xv
xview _xloadimage
xvnc4viewer _vnc
xvncviewer _vnc
xwd _x_utils
xwininfo _x_utils
xwit _xwit
xwud _x_utils
yast _yast
yast2 _yast
ypbind _yp
ypcat _yp
ypmatch _yp
yppasswd _yp