-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathbash-compgen-all.txt
8091 lines (8091 loc) · 76.7 KB
/
bash-compgen-all.txt
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
!
$
-serverid
.
..
...
....
.....
......
.1
.2
.3
16colors.sh-dump
1ci-smcs
2to3
2to3-
2to3-2
2to3-2.7
2to3-3.7
3Com-nsd
3com-amp3
3com-net-mgmt
3com-njack-1
3com-njack-2
3com-tsmux
3com-webview
3comfaxrpc
3comnetman
3d-nfsd
3ds-lm
3l-l1
3link
3m-image-lm
4-tieropmcli
4-tieropmgw
4talk
7z
7za
7zr
802-11-iapp
914c/g
9pfs
:
AppleFileServer
Apple_PubSub_Socket_Render
AssetCacheLocatorUtil
AssetCacheManagerUtil
AssetCacheTetheratorUtil
BASH
BASH_ARGC
BASH_ARGV
BASH_COMMAND
BASH_LINENO
BASH_REMATCH
BASH_SOURCE
BASH_SUBSHELL
BASH_VERSINFO
BASH_VERSION
BootCacheControl
BuildStrings
CAIlic
CDPATH
CLICOLOR
COLUMNS
COMP_WORDBREAKS
CpMac
CreateDOMDocument
DECAL
DESKTOP
DIRSTACK
DOMCount
DOMPrint
DOWNLOADS
DeRez
DevToolsSecurity
DirectoryService
EDITOR
EUID
EnumVal
FIGNORE
FileStatsAgent
GCC_COLORS
GIT
GIT_EDITOR
GIT_PAGER
GOARCH
GOOS
GOPATH
GOROOT
GREP_OPTIONS
GROUPS
GetFileInfo
HB
HISTCMD
HISTCONTROL
HISTFILE
HISTFILESIZE
HISTIGNORE
HISTSIZE
HISTTIMEFORMAT
HOME
HOMEBREW
HOSTNAME
HOSTTYPE
Host
IFS
IGNOREEOF
IOAccelMemory
KernelEventAgent
LANG
LD_LIBRARY_PATH
LESS
LESSHISTSIZE
LESS_TERMCAP_mb
LESS_TERMCAP_md
LESS_TERMCAP_me
LESS_TERMCAP_se
LESS_TERMCAP_so
LESS_TERMCAP_ue
LESS_TERMCAP_us
LINENO
LINES
LOGNAME
LS_COLORS
Less
LiebDevMgmt_A
LiebDevMgmt_C
LiebDevMgmt_DM
MACHTYPE
MAILCHECK
MAKEFLAGS
MOSH_PREDICTION_DISPLAY
MOST_SWITCHES
Magick++-config
MagickCore-config
MagickWand-config
MergePef
More
Most
MvMac
NetBootClientStatus
OLDPWD
OPTERR
OPTIND
OSTYPE
PAGER
PATH
PDFTK
PERL5LIB
PERL_LOCAL_LIB_ROOT
PERL_MB_OPT
PERL_MM_OPT
PIPESTATUS
PPID
PParse
PROMPT_COMMAND
PS1
PS2
PS4
PSVIWriter
PWD
PasswordService
RANDOM
RUBYLIB
Redirect
ResMerger
Rez
RezDet
RezWack
SAX2Count
SAX2Print
SAXCount
SAXPrint
SCMPrint
SECONDS
SECURITYSESSIONID
SEnumVal
SHELL
SHELLOPTS
SHELL_SESSION_DID_HISTORY_CHECK
SHELL_SESSION_DID_INIT
SHELL_SESSION_DIR
SHELL_SESSION_FILE
SHELL_SESSION_HISTFILE
SHELL_SESSION_HISTFILE_NEW
SHELL_SESSION_HISTFILE_SHARED
SHELL_SESSION_TIMESTAMP_FILE
SHLVL
SSH_AUTH_SOCK
SafeEjectGPU
SetFile
SimplyEmail
SplitForks
StdInParse
TERM
TERM_PROGRAM
TERM_PROGRAM_VERSION
TERM_SESSION_ID
TMPDIR
TODO.goodoms
UID
USER
UnRezWack
VBoxAutostart
VBoxBalloonCtrl
VBoxBugReport
VBoxDTrace
VBoxHeadless
VBoxManage
VBoxVRDP
VirtualBox
WirelessRadioManagerd
Wireshark
XInclude
XPC_FLAGS
XPC_SERVICE_NAME
XmlIpcRegSvc
[
[[
]]
_
_amavisd
_analyticsd
_analyticsusers
_appleevents
_applepay
_appowner
_appserver
_appserveradm
_appserverusr
_appstore
_ard
_assetcache
_astris
_atsserver
_avbdeviced
_calendar
_captiveagent
_ces
_clamav
_cmiodalassistants
_coreaudiod
_coremediaiod
_ctkd
_cvms
_cvmsroot
_cvs
_cyrus
_datadetectors
_detachedsig
_devdocs
_developer
_devicemgr
_displaypolicyd
_distnote
_dovecot
_dovenull
_dpaudio
_eppc
_findmydevice
_fpsd
_ftp
_gamecontrollerd
_geod
_guard-core
_guest
_hidd
_iconservices
_installassistant
_installer
_jabber
_kadmin_admin
_kadmin_changepw
_keytabusers
_krb_anonymous
_krb_changepw
_krb_kadmin
_krb_kerberos
_krb_krbtgt
_krbfast
_krbtgt
_launchservicesd
_lda
_locationd
_lp
_lpadmin
_lpoperator
_mailman
_mbsetupuser
_mcxalr
_mdnsresponder
_mobileasset
_mocha
_mysql
_netbios
_netstatistics
_networkd
_nsurlsessiond
_nsurlstoraged
_odchpass
_ondemand
_postdrop
_postfix
_postgres
_qtss
_sandbox
_screensaver
_scsd
_securityagent
_serialnumberd
_softwareupdate
_spotlight
_sshd
_svn
_taskgated
_teamsserver
_timed
_timezone
_tokend
_trustevaluationagent
_unknown
_update_sharing
_usbmuxd
_uucp
_warmd
_webauthserver
_webdeveloper
_windowserver
_www
_wwwproxy
_xcs
_xcscouch
_xcsd
_xcsnginx
_xserverdocs
a1-bs
a1-msc
a13-an
a14
a15
a16-an-an
a17-an-an
a21-an-1xbs
a2p
a2p5.18
a2x
a2x.py
a3-sdunode
a4-sdunode
aaftp
aairnet-1
aairnet-2
aal-lm
aamp
aap
aas
ab
abacus-remote
abarsd
abatemgr
abatjss
abbaccuray
abbs
abcsoftware
abcvoice-port
about
abr-basic
abr-secure
abscoftware
ac
ac-cluster
ac-tech
acap
acas
acc-raid
accel
accelenet
accept
access_bpf
accessbuilder
accessibility
accessnetwork
accord-mgc
accton
accu-lmgr
accuracer
accuracer-dbms
acd-pm
ace-client
ace-proxy
ace-server
ace-svr-prop
aci
acis
ack
acl-manager
aclocal
aclocal-1.16
acmaint_dbd
acmaint_transd
acme
acms
acmsoda
acp
acp-conduit
acp-discovery
acp-policy
acp-port
acp-proto
acptsys
acr-nema
acs2000-dsp
acter
activememory
activesync
actnet
ada-cip
adapt-sna
adaptecmgr
add
addftinfo
adi-gxp-srvprt
admin
admind
admins-lms
adobeserver-1
adobeserver-2
adobeserver-3
adobeserver-4
adobeserver-5
adrep
ads
adtech-test
adtempusclient
advant-lm
aed-512
aegate
aeroflight-ads
aeroflight-ret
aes-discovery
af
afclip
afconvert
afesc-mc
affiliate
afhash
afida
afinfo
afmtodit
afplay
afpovertcp
afrog
afs
afs3-bos
afs3-callback
afs3-errors
afs3-fileserver
afs3-kaserver
afs3-prserver
afs3-rmtsys
afs3-update
afs3-vlserver
afs3-volser
afscexpand
aftmux
agcat
agentsease-db
agentview
agentx
agentxtrap
agpolicy
agps-port
agri-gateway
agriserver
agvtool
ah-esp-encap
aiagent
aic-np
aic-oncrpc
aicc-cmi
aimpp-hello
aimpp-port-req
aipn-auth
aipn-reg
airbase-ng
aircrack-ng
airdecap-ng
airdecloak-ng
aireplay-ng
airodump-ng
airodump-ng-oui-update
airolib-ng
aironetddp
airs
airserv-ng
airshot
airsync
airtun-ng
airventriloquist-ng
aises
aker-cdp
alaris-disc
alarm
alarm-clock-c
alarm-clock-s
alchemy
alert
alesquery
alias
allstorcns
almobile-system
alpes
alpha-sms
alphatech-lm
alta-ana-lm
alta-smp
altalink
altav-remmgt
altav-tunnel
altovacentral
altserviceboot
amanda
amberon
ambit-lm
amdsched
amiganetfs
aminet
amp
ampr-info
ampr-inter
ampr-rcmd
amqp
ams
amt
amt-blc-port
amt-cnf-prot
amt-esd-prot
amt-redir-tcp
amt-redir-tls
amt-soap-http
amt-soap-https
amx-rms
amx-webadmin
amx-weblinx
an-pcp
analytics
and-lm
anet
anet-b
anet-h
anet-l
anet-m
animate
anoto-rendezv
ans-console
ansanotify
ansatrader
ansiweather
ansoft-lm-1
ansoft-lm-2
answersoft-lm
ansys-lm
ansyslmd
anthony-data
antidotemgrsvr
antiword
anynetgateway
aocp
aodv
aol
aol-1
aol-2
aol-3
ap
apachectl
apc-2160
apc-2161
apc-2260
apc-3052
apc-3506
apc-5454
apc-5455
apc-5456
apc-6547
apc-6548
apc-6549
apc-7845
apc-7846
apc-9950
apc-9951
apc-9952
apc-necmp
apcupsd
apdap
apertus-ldp
apex-edge
apex-mesh
apfs_hfs_convert
aplx
apm-link
apocd
apogeex-port
apollo-admin
apollo-cc
apollo-data
apollo-gms
apollo-relay
apollo-status
apparenet-as
apparenet-tps
apparenet-ts
apparenet-ui
appiq-mgmt
apple-licman
apple-sasl
apple-vpns-rp
appleqtc
appleqtcsrvr
applesingle
appletviewer
appleugcontrol
appliance-cfg
applix
apply
applygeo
appman-server
appraisal
appserv-http
appserv-https
appsleepd
appss-lm
appswitch-emp
appworxsrv
apri-lm
apropos
apt
apt-cache-para
apw-registry
apx500api-1
apx500api-2
ar
arbortext-lm
arch
archey
arcisdms
arcp
arcpd
ardt
ardus-cntl
ardus-mtrns
ardus-trns
ardusmul
ardusuni
arena-server
arepa-cas
arepa-raft
argis-ds
argis-te
aria
ariel1
ariel2
ariel3
aries-kfinder
ariliamulti
arkivio
armadp
armcenterhttp
armcenterhttps
armi-server
armitage
armtechdaemon
arns
arp
arp-fingerprint
arp-scan
array-manager
ars-master
ars-vista
artifact-msg
artii
as
as-debug
as-servermap
asa
asa-appl-proto
asam
asap-tcp
asap-tcp-tls
asap-udp
asc-slmd
asci-val
ascii
ascii-xfr
ascii2uni
asciidoc
asciidoc.py
asctl
asctrl-agent
asdis
asf-rmcp
asf-secure-rmcp
ashwin
asi
asia
asip-webadmin
asipregistry
ask
aslmanager
asn1Coding
asn1Decoding
asn1Parser
asnaacceler8db
asoki-sma
aspeclmd
aspen-services
aspentec-lm
asprovatalk
asr
assetutil
assuria-slm
asterix
astromed-main
at
at-3
at-5
at-7
at-8
at-echo
at-nbp
at-rtmp
at-zis
atc-appserver
atc-lm
atex_elmd
athand-mmp
ati-ip-to-ncpe
atlinks
atm-uhas
atm-zip-office
atmp
atmtcp
atos
atq
atrm
ats
atsutil
att-intercom
attachmate-g32
attachmate-s2s
attachmate-uts
atul
audio-activmail
audiojuggler
audionews
audit
audit-transfer
auditd
auditreduce
aura
auriga-router
auris
aurora-cmgr
aurp
auth
authedusers
authentx
authy-api-console
auto-update
autoconf
autocueds
autocuelog
autocuesmi
autocuetime
autodesk-lm
autodesk-nlm
autodiskmount
autoheader
autom4te
automake
automake-1.16
automator
automount
autonoc
autopac
autoreconf
autoremove
autoscan
autoupdate
auval
auvaltool
av-emb-config
avail-epmap
availant-mgr
avantageb2b
avauthsrvprtcl
avbdeviced
avbdiagnose
avbutil
avconvert
avenue
avian
avinstalldisc
aviva-sna
avmetareadwrite
avocent-adsap
avocent-proxy
avsecuremgmt
avt-profile-1
avt-profile-2
awg-proxy
awk
aws-brf
axis-wimp-port
axon-lm
ayiya
aztec
b-novative-ls
b2-license
b2-runtime
b2n
backburner
backroomnet
backup-express
backupedge
bacnet
bacula-dir
bacula-fd
bacula-sd
badm_priv
badm_pub
bandwiz-system
banner
banyan-net
banyan-rpc
banyan-vip
base
base64
basename
bash
bash-compgen-all.txt
bash-snippets
bashbug
bashdb
bashish
bashishtheme
batch
battlenet
bb
bbars
bbftp
bbftpstatus
bbn-mmc
bbn-mmx
bc
bcinameservice
bcs
bcs-broker
bcs-lmserver
bctp
bctp-server
bdir_priv
bdir_pub
bdp
beacon-port
beacon-port-2
bears-01
bears-02
beeyond
beeyond-media
belarc-http
beorl
berknet
berks
beserver-msg-q
bess
besside-ng
besside-ng-crawler
bettercap
betty
bex-webadmin
beyond-remote
bfd-control
bfd-echo
bfd-multi-ctl
bflckmgr
bftp
bg
bgmp
bgp
bgs-nsi
bh611
bhevent
bhfhs
bhmds
bhoedap4
bhoetty
biap-mp
biff
biimenu
bim-pem
bin
bind
binderysupport
binhex
binhex.pl
binhex5.18.pl
binkp
bintec-admin
bintec-capi
bintec-tapi
biolink-auth
bioserver
bioutil
bis-sync
bis-web
bison
bitesize.d
bitspeer
bl-idm
blackboard
blackjack
blaze
bless
blockade
blockade-bpsp
blocks
blp1
blp2
blp3
blp4
blp5
blueberry-lm
bluectrlproxy
bluelance
bluetoothaudiod
bluetoothd
blueutil
blwnkl-port
bmap
bmc-ar
bmc-data-coll
bmc-ea
bmc-grx
bmc-jmx-port
bmc-messaging
bmc-net-adm
bmc-net-svc
bmc-onekey
bmc-perf-agent
bmc-perf-mgrd
bmc-perf-sd
bmc-reporting
bmc_ctd_ldap
bmc_patroldb
bmcpatrolagent
bmcpatrolrnvu
bmpp
bnepd
bnet
bnetfile
bnetgame
bnt-manager
board-roar
board-voip
boinc-client
boks
boks_clntd
boks_servc
boks_servm
boldsoft-lm
boomerang
boosterware
bootclient
bootpc
bootps
bootserver
borland-dsj
boscap
bounzza
bower
bp
bpcd
bpcp-poll
bpcp-trap
bpdbm
bpjava-msvc
bpmd
bprd
bq
br-channel
brain
brakeman
brcd
brcm-comm-port
brctl
bre
break
brew
brew-pip
brf-gw