forked from Homebrew/homebrew-command-not-found
-
Notifications
You must be signed in to change notification settings - Fork 0
/
executables.txt
4827 lines (4827 loc) · 285 KB
/
executables.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
a2ps:a2ps card composeglyphs fixnt fixps ogonkify pdiff psmandup psset texi2dvi4a2ps
a52dec:a52dec extract_a52
aacgain:aacgain
aalib:aafire aainfo aalib-config aasavefont aatest
aamath:aamath
aap:aap
aardvark_shell_utils:filebase fileext realpath
abcde:abcde abcde-musicbrainz-tool cddb-tool
abcl:abcl
abcm2ps:abcm2ps
abcmidi:abc2abc abc2midi abcmatch mftext midi2abc midicopy yaps
abduco:abduco
abi-compliance-checker:abi-compliance-checker
abnfgen:abnfgen
abook:abook
ace:
aces_container:
ack:ack
acme:acme
acpica:acpibin acpidump acpiexamples acpiexec acpihelp acpinames acpisrc acpixtract iasl
activemq-cpp:activemqcpp-config example
activemq:activemq activemq-admin
admesh:admesh
adns:adnsheloex adnshost adnslogres adnsresfilter
adplug:adplugdb
advancecomp:advdef advmng advpng advzip
aescrypt-packetizer:paescrypt paescrypt_keygen
aescrypt:aescrypt aesget
aeskeyfind:aeskeyfind
aespipe:aespipe
afflib:affcat affcompare affconvert affcopy affcrypto affdiskprint affinfo affix affrecover affsegment affsign affstats affuse affverify affxml
afio:afio
afl-fuzz:afl-clang afl-clang++ afl-cmin afl-fuzz afl-g++ afl-gcc afl-gotcpu afl-plot afl-showmap afl-tmin afl-whatsup
afsctool:afsctool
aften:aften wavfilter wavinfo wavrms
agda:agda agda-mode
aget:aget
aggregate:aggregate aggregate-ios
aha:aha
ahcpd:ahcpd
aiccu:aiccu
aircrack-ng:aircrack-ng airdecap-ng airdecloak-ng ivstools kstats makeivs-ng packetforge-ng airbase-ng airdriver-ng aireplay-ng airmon-ng airodump-ng airodump-ng-oui-update airserv-ng airtun-ng
akka:akka akka-cluster
alac:alac
aldo:aldo
algernon:algernon
algol68g:a68g
align:align width
allegro:
alpine:alpine pico pilot rpdump rpload
alure:alurecdplay alureplay alurestream
amap:amap amap6 amapcrap
amtterm:amtterm amttool
analog:analog
android-ndk:ndk-build ndk-gdb ndk-stack
android-platform-tools:adb fastboot
android-sdk:aapt adb aidl android ddms dexdump dmtracedump draw9patch dx emulator emulator-arm emulator-x86 etc1tool fastboot hierarchyviewer hprof-conv lint llvm-rs-cc mksdcard monitor monkeyrunner traceview zipalign
ansible:ansible ansible-doc ansible-galaxy ansible-playbook ansible-pull ansible-vault
ansifilter:ansifilter
ant-contrib:
ant:ant antRun antRun.pl complete-ant-cmd.pl runant.pl runant.py
antigen:
antiword:antiword
antlr:antlr4 grun
anttweakbar:
aoeui:aoeui asdfg
apache-archiva:archiva
apache-drill:drill-conf drill-config.sh drill-embedded drill-localhost drillbit.sh dumpcat hadoop-excludes.txt runbit sqlline sqlline.bat submit_plan
apache-forrest:forrest
apache-opennlp:opennlp
apache-spark:load-spark-env.sh pyspark run-example spark-beeline spark-class spark-shell spark-sql spark-submit sparkR
apachetop:apachetop
ape:aped
apel:
apg:apg apgbfm
apgdiff:apgdiff
apib:apib apibmon
apktool:apktool
apngasm:apngasm
apollo:apollo
app-engine-java-sdk:appcfg.sh dev_appserver.sh endpoints.sh google_sql.sh run_java.sh
apparix:apparix
appscale-tools:appscale appscale-add-instances appscale-add-keypair appscale-describe-instances appscale-gather-logs appscale-get-property appscale-relocate-app appscale-remove-app appscale-reset-pwd appscale-run-instances appscale-set-property appscale-terminate-instances appscale-upload-app
apr-util:apu-1-config
apr:apr-1-config
apt-cacher-ng:apt-cacher-ng
apt-dater:apt-dater
aptly:aptly
aqbanking:aqbanking-cli aqbanking-config aqebics-tool aqhbci-tool4 hbcixml3
arangodb:arangob arangodump arangoimp arangorestore arangosh foxx-manager arango-dfdb arangod
archey:archey
argp-standalone:
argtable:
argus-clients:argusclientbug ra rabins racluster raconvert racount radark radecode radump raevent rafilteraddr ragraph ragrep rahisto rahosts ralabel ranonymize rapath rapolicy raports rarpwatch raservices rasort rasplit rastream rastrip ratemplate ratimerange ratop rauserdata radium
argus:argus-lsof argus-snmp argus-vmstat argusbug argus
argyll-cms:applycal average cb2ti3 cctiff ccxxmake chartread collink colprof colverify dispcal dispread dispwin extracticc extractttag fakeCMY fakeread greytiff iccdump iccgamut icclu illumread invprofcheck kodak2ti3 mppcheck mpplu mppprof oeminst printcal printtarg profcheck refine revfix scanin spec2cie specplot splitti3 spotread synthcal synthread targen tiffgamut timage txt2ti3 viewgam xicclu
aria2:aria2c
arm:arm
arp-scan:arp-fingerprint arp-scan get-iab get-oui
arp-sk:arp-sk
arping:arping
arpoison:arpoison
arpon:arpon
arss:arss
artifactory:artifactory.default artifactory.sh
ascii:ascii
asciidoc:a2x a2x.py asciidoc asciidoc.py
asciinema:asciinema
asciitex:asciiTeX
asm6:asm6
asn1c:asn1c crfc2asn1.pl enber unber
aspcud:aspcud cudf2lp
aspell:aspell aspell-import precat preunzip prezip prezip-bin pspell-config run-with-aspell word-list-compress
assimp:assimp
astyle:astyle
at-spi2-atk:
at-spi2-core:
atdtool:atdtool
aterm:atdiff atreverse atrmannos atsum baf2taf baf2trm baffle dicttoc taf2baf taf2trm termsize trm2baf trm2taf trmcat
atf:atf-sh
atk:
atkmm:
atomicparsley:AtomicParsley
atool:acat adiff als apack arepack atool aunpack
ats2-postiats:patscc patsopt
aubio:aubiomfcc aubionotes aubioonset aubiopitch aubioquiet aubiotrack
audiofile:sfconvert sfinfo
augeas:augparse augtool
auto-scaling:as-attach-instances as-cmd as-complete-lifecycle-action as-create-auto-scaling-group as-create-launch-config as-create-or-update-tags as-delete-auto-scaling-group as-delete-launch-config as-delete-lifecycle-hook as-delete-notification-configuration as-delete-policy as-delete-scheduled-action as-delete-tags as-describe-account-limits as-describe-adjustment-types as-describe-auto-scaling-groups as-describe-auto-scaling-instances as-describe-auto-scaling-notification-types as-describe-launch-configs as-describe-lifecycle-hook-types as-describe-lifecycle-hooks as-describe-metric-collection-types as-describe-notification-configurations as-describe-policies as-describe-process-types as-describe-scaling-activities as-describe-scheduled-actions as-describe-tags as-describe-termination-policy-types as-detach-instances as-disable-metrics-collection as-enable-metrics-collection as-enter-standby as-execute-policy as-exit-standby as-put-lifecycle-hook as-put-notification-configuration as-put-scaling-policy as-put-scheduled-update-group-action as-record-lifecycle-action-heartbeat as-resume-processes as-set-desired-capacity as-set-instance-health as-suspend-processes as-terminate-instance-in-auto-scaling-group as-update-auto-scaling-group as-version
autobench:autobench autobench_admin autobenchd bench2graph crfile sesslog
autoconf-archive:
autoconf:autoconf autoheader autom4te autoreconf autoscan autoupdate ifnames
autoenv:
autogen:autogen autoopts-config columns getdefs xml2ag
autojump:autojump
automake:aclocal aclocal-1.15 automake automake-1.15
automoc4:automoc4
automysqlbackup:automysqlbackup
autopano-sift-c:autopano autopano-c-complete.sh autopano-sift-c generatekeys
autopsy:autopsy
autossh:autossh rscreen
autotrace:autotrace autotrace-config
avce00:avcdelete avcexport avcimport avctest
avian:avian avian-dynamic
avidemux:avidemux avidemux_cli avidemux_jobs
aview:aaflip asciiview aview
avra:avra
avrdude:avrdude
avro-c:avroappend avrocat avromod avropipe
avro-cpp:avrogencpp
avro-tools:avro-tools
aws-cfn-tools:cfn-cancel-update-stack cfn-cmd cfn-create-stack cfn-delete-stack cfn-describe-stack-events cfn-describe-stack-resource cfn-describe-stack-resources cfn-describe-stacks cfn-get-template cfn-list-stack-resources cfn-list-stacks cfn-update-stack cfn-validate-template cfn-version
aws-cloudsearch:cs-cmd cs-configure-from-batches cs-import-documents
aws-elasticache:elasticache elasticache-authorize-cache-security-group-ingress elasticache-copy-snapshot elasticache-create-cache-cluster elasticache-create-cache-parameter-group elasticache-create-cache-security-group elasticache-create-cache-subnet-group elasticache-create-replication-group elasticache-create-snapshot elasticache-delete-cache-cluster elasticache-delete-cache-parameter-group elasticache-delete-cache-security-group elasticache-delete-cache-subnet-group elasticache-delete-replication-group elasticache-delete-snapshot elasticache-describe-cache-clusters elasticache-describe-cache-engine-versions elasticache-describe-cache-parameter-groups elasticache-describe-cache-parameters elasticache-describe-cache-security-groups elasticache-describe-cache-subnet-groups elasticache-describe-engine-default-parameters elasticache-describe-events elasticache-describe-replication-groups elasticache-describe-reserved-cache-nodes elasticache-describe-reserved-cache-nodes-offerings elasticache-describe-snapshots elasticache-modify-cache-cluster elasticache-modify-cache-parameter-group elasticache-modify-cache-subnet-group elasticache-modify-replication-group elasticache-purchase-reserved-cache-nodes-offering elasticache-reboot-cache-cluster elasticache-reset-cache-parameter-group elasticache-revoke-cache-security-group-ingress elasticache-version
aws-elasticbeanstalk:eb
aws-sns-cli:sns-add-permission sns-cmd sns-confirm-subscription sns-create-topic sns-delete-topic sns-get-subscription-attributes sns-get-topic-attributes sns-list-subscriptions sns-list-subscriptions-by-topic sns-list-topics sns-publish sns-remove-permission sns-set-subscription-attributes sns-set-topic-attributes sns-subscribe sns-unsubscribe sns-version
awscli:aws aws.cmd aws_completer aws_zsh_completer.sh
awsenv:awsenv
axel:axel
b43-fwcutter:b43-fwcutter
babeld:babeld
babl:
backupninja:backupninja ninjahelper
bacula-fd:bacula bacula-fd bconsole btraceback
bagit:bag
balance:balance
bam:bam
bar:bar
baresip:baresip
base64:base64
basex:basex basexclient basexgui basexhttp basexhttpstop basexserver basexserverstop
bash-completion:
bash-git-prompt:
bash:bash bashbug
bashdb:bashdb
bashish:bashish bashishtheme
batik:batik batik-rasterizer batik-ttf2svg
bats:bats
bazaar:bzr
bbcolors:bbcolors
bbe:bbe
bbftp-client:bbftp bbftpstatus
bchunk:bchunk
bcpp:bcpp cb++
bcrypt:bcrypt
bdw-gc:
beansdb:beansdb
beanstalk:beanstalkd
bear:bear
beecrypt:
beef:beef
berkeley-db4:db_archive db_checkpoint db_deadlock db_dump db_hotbackup db_load db_printlog db_recover db_sql db_stat db_upgrade db_verify
berkeley-db:db_archive db_checkpoint db_deadlock db_dump db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate db_stat db_tuner db_upgrade db_verify
betty:betty
bfg:bfg
bgpdump:bgpdump
bgpq3:bgpq3
bgrep:bgrep
bib-tool:bibtool
bibclean:bibclean bibclean-2.16
bibtex2html:aux2bib bib2bib bibtex2html
bibtexconv:bibtexconv bibtexconv-odt
bibutils:bib2xml biblatex2xml copac2xml ebi2xml end2xml endx2xml isi2xml med2xml modsclean ris2xml wordbib2xml xml2ads xml2bib xml2end xml2isi xml2ris xml2wordbib
bigdata:bigdata
bigloo:bglafile bgldepend bgljas bgljfile bglmake bglmco bglpp bglprof bgltags bigloo bigloo4.1a
bind:bind9-config delv dig host isc-config.sh nslookup nsupdate arpaname ddns-confgen dnssec-checkds dnssec-coverage dnssec-dsfromkey dnssec-importkey dnssec-keyfromlabel dnssec-keygen dnssec-revoke dnssec-settime dnssec-signzone dnssec-verify genrandom isc-hmac-fixup lwresd named named-checkconf named-checkzone named-compilezone named-journalprint named-rrchecker nsec3hash rndc rndc-confgen tsig-keygen
binutils:gaddr2line gar gc++filt gcoffdump gdlltool gdllwrap gelfedit gnlmconv gnm gobjcopy gobjdump granlib greadelf gsize gsrconv gstrings gstrip gsysdump gwindmc gwindres
binwalk:binwalk
bip:bip bipmkpw
bison:bison yacc
bitchx:BitchX BitchX-1.2.1 scr-bx
bitlbee:bitlbee
bittwist:bittwist bittwiste
blahtexml:blahtex blahtexml
blazeblogger:blaze blaze-add blaze-config blaze-edit blaze-init blaze-list blaze-log blaze-make blaze-remove
blink1:blink1-tool
blitz:
blitzwave:blitzwave-config
blockhash:blockhash
bltool:bltool
blucat:blucat
blueutil:blueutil
bmake:bmake
bmon:bmon
bogofilter:bf_compact bf_copy bf_tar bogofilter bogolexer bogotune bogoupgrade bogoutil
bokken:bokken
bonnie++:bon_csv2html bon_csv2txt generate_randfile bonnie++ getc_putc getc_putc_helper zcav
boost-bcp:bcp
boost-build:b2 bjam
boost-python:
boost:
boot-clj:boot
boot2docker:boot2docker
botan:botan-config-1.10
box2d:
boxes:boxes
bpm-tools:bpm
brag:brag
brew-gem:brew-gem
brew-pip:brew-pip
briss:briss
bro:bro bro-cut broccoli-config broctl capstats trace-summary
browser:browser
bsdconv:bsdconv bsdconv-completion bsdconv-man bsdconv-mktable
bsdiff:bsdiff
bsdmake:bsdmake
bsdsfv:bsdsfv
bsponmpi:
btparse:bibparse
btpd:btcli btinfo btpd
buildapp:buildapp
bulk_extractor:BEViewer bulk_extractor plugin_test
bullet:
bup:bup
burl:burl
burp:bedup burp burp_ca vss_strip
bvi:bmore bvedit bvi bview
bwctl:bwctl bwctld bwping bwtraceroute
bwm-ng:bwm-ng
byacc:byacc
byobu:byobu byobu-config byobu-ctrl-a byobu-disable byobu-disable-prompt byobu-enable byobu-enable-prompt byobu-export byobu-janitor byobu-keybindings byobu-launch byobu-launcher byobu-launcher-install byobu-launcher-uninstall byobu-layout byobu-prompt byobu-quiet byobu-reconnect-sockets byobu-screen byobu-select-backend byobu-select-profile byobu-select-session byobu-shell byobu-silent byobu-status byobu-status-detail byobu-tmux byobu-ugraph byobu-ulevel col1 ctail vigpg wifi-status
bzr-fastimport:
c-ares:
c-kermit:ckermit.ini kermit kermit-sshsub
cabal-install:cabal
cabextract:cabextract
cabocha:cabocha cabocha-config
cadaver:cadaver
caddy:caddy
cadubi:cadubi
cairo:cairo-sphinx cairo-trace
cairomm:
cake:cake
calabash:calabash
calc:calc
calcurse:calcurse calcurse-upgrade
camellia:cam_demo cam_myobjects cam_yalefaces
camlistore:camget camlistored cammount camput camtool devcam hello publisher
camlp4:camlp4 camlp4boot camlp4o camlp4o.opt camlp4of camlp4of.opt camlp4oof camlp4oof.opt camlp4orf camlp4orf.opt camlp4prof camlp4r camlp4r.opt camlp4rf camlp4rf.opt mkcamlp4
camlp5:camlp5 camlp5o camlp5o.opt camlp5r camlp5r.opt camlp5sch mkcamlp5 mkcamlp5.opt ocpp5
capnp:capnp capnpc capnpc-c++ capnpc-capnp
capstone:
carthage:carthage
cask:cask
caskroom/cask/brew-cask:brew-cask
casperjs:casperjs
cassandra:cassandra cqlsh cqlsh.py debug-cql nodetool sstablekeys sstableloader sstablescrub sstableupgrade sstableverify
cattle:
caudec:caudec decaude
cayley:cayley
cbmbasic:cbmbasic
cc65:ar65 ca65 ca65html cc65 cl65 co65 da65 grc ld65 od65
ccache:ccache
ccal:ccal ccalpdf
ccat:ccat
ccd2iso:ccd2iso
ccextractor:ccextractor
cclive:ccl cclive
ccm:ccm
cconv:cconv
ccrypt:ccat ccdecrypt ccencrypt ccguess ccrypt
cctools-headers:
cctools:ar as check_dylib checksyms cmpdylib codesign_allocate ctf_insert indr install_name_tool libtool lipo mtoc nm nmedit otool pagestuff ranlib redo_prebinding seg_addr_table seg_hack segedit size strings strip
ccze:ccze ccze-cssdump
cd-discid:cd-discid
cdargs:cdargs
cdb:cdbdump cdbget cdbmake cdbmake-12 cdbmake-sv cdbstats cdbtest
cdecl:c++decl cdecl
cdimgtools:dvdimgdecss cssdec
cdk:cdk5-config
cdlabelgen:cdlabelgen
cdparanoia:cdparanoia
cdpr:cdpr
cdrdao:cdrdao cue2toc toc2cddb toc2cue toc2mp3
cdrtools:btcflash cdda2mp3 cdda2ogg cdda2wav cdrecord devdump isodebug isodump isoinfo isovfy mkhybrid mkisofs readcd scgcheck scgskeleton rscsi
center-im:centerim CenterIMLog2HTML.py cimconv cimextracthistory.pl cimformathistory
cereal:
ceylon:ceylon ceylon-sh-setup
cf:cf
cfengine:cf-agent cf-execd cf-key cf-monitord cf-promises cf-runagent cf-serverd cf-upgrade rpmvercmp
cfitsio:
cflow:cflow
cfr-decompiler:cfr-decompiler
cfv:cfv
cgal:cgal_create_cmake_script cgal_create_CMakeLists cgal_make_macosx_app
cgdb:cgdb
cgrep:cgrep
cgvg:cg vg
chadwick:cwbox cwcomment cwevent cwgame cwsub
chapel:chpl chpl-ipe chpldoc
charm-tools:charm charm-add charm-create charm-generate charm-get charm-getall charm-help charm-info charm-list charm-promulgate charm-proof charm-review charm-review-queue charm-search charm-subscribers charm-test charm-unpromulgate charm-update charm-version juju-charm
chcase:chcase
cheat:cheat
check:checkmk
check_postgres:check_postgres
checkbashisms:checkbashisms
checkstyle:checkstyle
cherokee:cget cherokee-admin-launcher cherokee-config cherokee-macos-askpass cherokee-panic cherokee-tweak CTK-run cherokee cherokee-admin cherokee-worker
chgems:chgems
chibi-scheme:chibi-doc chibi-ffi chibi-scheme snow-chibi
chicken:chicken chicken-bug chicken-install chicken-profile chicken-status chicken-uninstall csc csi
chinadns-c:chinadns
chipmunk:
chisel:
chkrootkit:check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static
chmlib:chm_http enum_chmLib enumdir_chmLib extract_chmLib test_chmLib
chordii:a2crd chordii
chromaprint:fpcalc
chrome-cli:chrome-canary-cli chrome-cli
chromedriver:chromedriver
chruby-fish:
chruby:chruby-exec
chuck:chuck
cidrmerge:cidrmerge
cifer:cifer cifer-dict
cig:cig
cimg:
cityhash:
cjdns:cjdroute
cksfv:cksfv
clamav:clamav-config clambc clamconf clamdscan clamdtop clamscan clamsubmit freshclam sigtool clamd
clamz:clamz
clang-format:clang-format git-clang-format
clang-omp:clang-omp clang-omp++
clasp:clasp
class-dump:class-dump
classads:classad_functional_tester classad_functional_tester_ns classad_version classad_version_ns cxi cxi_ns
clean:clean
clearlooks-phenix:
clens:
cless:cless
clhep:Cast-config clhep-config Evaluator-config Exceptions-config GenericFunctions-config Geometry-config Matrix-config Random-config RandomObjects-config RefCount-config Units-config Utility-config Vector-config
clib:clib clib-install clib-search
cliclick:cliclick
clipper:clipper
clipsafe:clipsafe
clisp:clisp clisp-link
cln:pi
cloc:cloc
clockywock:clockywock
clojure:clj
clojurescript:cljsc
cloog:cloog
closure-compiler:closure-compiler
closure-linter:fixjsstyle gjslint
cloud-watch:mon-cmd mon-delete-alarms mon-describe-alarm-history mon-describe-alarms mon-describe-alarms-for-metric mon-disable-alarm-actions mon-enable-alarm-actions mon-get-stats mon-list-metrics mon-put-data mon-put-metric-alarm mon-set-alarm-state mon-version
cloudbees-sdk:bees beesd stax staxd
clozure-cl:ccl ccl64
clpbar:clpbar
clucene:
clutter-gst:
clutter-gtk:
clutter:
cmake:ccmake cmake cmakexbuild cpack ctest
cmatrix:cmatrix
cmigemo:cmigemo
cmocka:
cmockery2:
cmockery:
cmu-pocketsphinx:pocketsphinx_batch pocketsphinx_continuous pocketsphinx_mdef_convert
cmu-sphinxbase:sphinx_cepview sphinx_cont_adseg sphinx_cont_fileseg sphinx_fe sphinx_jsgf2fsg sphinx_lm_convert sphinx_lm_eval sphinx_lm_sort sphinx_pitch
cmuclmtk:binlm2arpa evallm idngram2lm idngram2stats lm_combine lm_interpolate mergeidngram ngram2mgram text2idngram text2wfreq text2wngram wfreq2vocab wngram2idngram
cmus:cmus cmus-remote
cntlm:cntlm
coccinelle:spatch spatch.byte
cocot:cocot
coda-cli:coda
codequery:codequery cqmakedb cqsearch
cogl:
coin:coin-config soqt-config
collada-dom:
collectd:collectd-nagios collectd-tg collectdctl collectd collectdmon
colordiff:cdiff colordiff
colormake:clmake clmake-short colormake colormake-short
colorsvn:colorsvn
colortail:colortail
commonmark:cmark
compcert:ccomp
compface:compface uncompface
concurrencykit:
confuse:
conserver:console conserver
consul:consul
contacts:contacts
convertlit:clit
convmv:convmv
cookiecutter:cookiecutter
coq:coq-tex coq_makefile coqc coqchk coqchk.opt coqdep coqdoc coqmktop coqtop coqtop.byte coqtop.opt coqwc gallina
coreutils:g[ gbase64 gbasename gcat gchcon gchgrp gchmod gchown gchroot gcksum gcomm gcp gcsplit gcut gdate gdd gdf gdir gdircolors gdirname gdu gecho genv gexpand gexpr gfactor gfalse gfmt gfold ggroups ghead ghostid gid ginstall gjoin gkill glink gln glogname gls gmd5sum gmkdir gmkfifo gmknod gmktemp gmv gnice gnl gnohup gnproc gnumfmt god gpaste gpathchk gpinky gpr gprintenv gprintf gptx gpwd greadlink grealpath grm grmdir gruncon gseq gsha1sum gsha224sum gsha256sum gsha384sum gsha512sum gshred gshuf gsleep gsort gsplit gstat gstdbuf gstty gsum gsync gtac gtail gtee gtest gtimeout gtouch gtr gtrue gtruncate gtsort gtty guname gunexpand guniq gunlink guptime gusers gvdir gwc gwho gwhoami gyes realpath
corkscrew:corkscrew
couchdb-lucene:cl_kill_ppid cl_run
couchdb:couch-config couchdb couchjs
couchpotatoserver:couchpotatoserver
cowpatty:cowpatty genpmk
cowsay:cowsay cowthink
cpanminus:cpanm
cpansearch:cpans
cpmtools:cpmchattr cpmchmod cpmcp cpmls cpmrm fsck.cpm fsed.cpm mkfs.cpm
cpp-netlib:
cppcheck:cppcheck cppcheck-htmlreport
cppdom:cppdom-config
cppformat:
cppi:cppi
cpptest:
cppunit:cppunit-config DllPlugInTester
cpputest:
cproto:cproto
cpulimit:cpulimit
cputhrottle:cputhrottle
cracklib-words:
cracklib:cracklib-check cracklib-format cracklib-packer cracklib-unpacker create-cracklib-dict
crash:crash.sh
creduce:creduce
crf++:crf_learn crf_test
crm114:crm cssdiff cssmerge cssutil osbf-util
cronolog:cronolog cronosplit
crosstool-ng:ct-ng
crunch:crunch
crush-tools:add_field aggregate aggregate2 buffer calcfield convdate csvformat cutfield dates_in_range dbstream deltadays deltaforce fieldsplit filterkeys find_not_processed findfiles foreach_parallel funiq grepfield hashjoin indexof mergekeys pivot range reorder subtotal tochar translate_field truncfield
cryptol:cryptol
cryptopp:cryptest.exe
crystal:crystal
crystax-ndk:ndk-build ndk-gdb ndk-stack
cscope:cscope ocs
csfml:
csmith:compiler_test.pl csmith launchn.pl test_csmith.pl
cspice:brief chronos ckbrief commnt frmdiff inspekt mkspk msopck simple spacit spkdiff spkmerge states subpt tictoc tobin toxfr version
css-crush:csscrush
cssembed:cssembed
csshx:csshX
csup:csup
csv-fix:csvfix
csvprintf:csvprintf xml2csv
csync:csync
ctags:ctags
ctail:ctail
ctemplate:diff_tpl_auto_escape make_tpl_varnames_h template-converter
ctl:ctlrender exr_ctl_exr exrdpx
ctorrent:ctorrent
ctunnel:ctunnel
cuetools:cuebreakpoints cueconvert cueprint cuetag.sh
cunit:
cups-pdf:
curaengine:CuraEngine
curl:curl curl-config
curlish:curlish
curlpp:curlpp-config
cutter:cut-diff cutter
cuty_capt:CutyCapt
cv:cv
cvc4:cvc4
cvs2svn:cvs2bzr cvs2git cvs2svn
cvs:cvs cvsbug rcs2log
cvsps:cvsps
cvsutils:cvschroot cvsco cvsdiscard cvsdo cvspurge cvstrim cvsu
cvsync:cvscan cvsup2cvsync cvsync cvsync2cvsup cvsyncd rcscan rcscmp
cweb:ctangle cweave
cxxtest:cxxtestgen
cyassl:wolfssl-config
czmq:czmq-makecert
d-bus:dbus-cleanup-sockets dbus-daemon dbus-launch dbus-monitor dbus-run-session dbus-send dbus-uuidgen
daemon:daemon
daemonize:daemonize
daemonlogger:daemonlogger
daemontools:envdir envuidgid fghack multilog pgrphack readproctitle setlock setuidgid softlimit supervise svc svok svscan svscanboot svstat tai64n tai64nlocal
dante:socksify sockd
daq:daq-modules-config
dar:dar dar_cp dar_manager dar_slave dar_xform
darcs:darcs
dark-mode:dark-mode
darkhttpd:darkhttpd
darkice:darkice
darkstat:darkstat
dash:dash
dasm:dasm ftohex
dateutils:dadd dconv ddiff dgrep dround dseq dtest strptime
datomic:datomic datomic-groovysh datomic-maven-install datomic-repl datomic-repl-jline datomic-rest datomic-shell datomic-transactor
davix:davix-get davix-http davix-ls davix-mkdir davix-mv davix-put davix-rm
davmail:davmail
dbacl:bayesol dbacl hmine hypex mailcross mailfoot mailinspect mailtoe
dbus-glib:dbus-binding-tool
dc3dd:dc3dd
dcal:dcal
dcd:dcd-client dcd-server
dcfldd:dcfldd
dcled:dcled
dcmtk:dcm2pdf dcm2pnm dcm2xml dcmcjpeg dcmcjpls dcmconv dcmcrle dcmdata_tests dcmdjpeg dcmdjpls dcmdrle dcmdspfn dcmdump dcmftest dcmgpdir dcmj2pnm dcml2pnm dcmmkcrv dcmmkdir dcmmklut dcmnet_tests dcmodify dcmp2pgm dcmprscp dcmprscu dcmpschk dcmpsmk dcmpsprt dcmpsrcv dcmpssnd dcmqridx dcmqrscp dcmqrti dcmquant dcmrecv dcmrt_tests dcmscale dcmsend dcmsign dcmsr_tests dcod2lum dconvlum drtdump drttest dsr2html dsr2xml dsrdump dump2dcm echoscu findscu getscu img2dcm mkreport movescu ofstd_tests pdf2dcm preplock readoviw readwlst storescp storescu termscu wlmscpfs writwlst xml2dcm xml2dsr
dcraw:dcraw
ddar:ddar
ddate:ddate
ddclient:ddclient
ddrescue:ddrescue ddrescuelog
debianutils:ischroot run-parts tempfile
deheader:deheader
deis:deis
deisctl:deisctl
deja-gnu:runtest
delta:delta multidelta topformflat
denominator:denominator
dependency-check:dependency-check
depqbf:depqbf
detox:detox inline-detox
devil:ilur
devtodo:devtodo tda tdd tde tdl tdr todo
dex2jar:d2j-baksmali d2j-dex-recompute-checksum d2j-dex2jar d2j-dex2smali d2j-jar2dex d2j-jar2jasmin d2j-jasmin2jar d2j-smali d2j-std-apk d2j_invoke
dex:dex
dfc:dfc
dfu-programmer:dfu-programmer
dfu-util:dfu-prefix dfu-suffix dfu-util
dhcpdump:dhcpdump
dhcping:dhcping
dhex:dhex
di:di mi
dialog:dialog dialog-config
dict:colorit dict dict_lookup dictdplugin-config dictfmt dictfmt_index2suffix dictfmt_index2word dictl dictunformat dictzip dictd
diction:diction style
dieharder:dieharder
diff-pdf:diff-pdf
diffuse:diffuse
dirac:BMPtoRGB create_dirac_testfile.pl dirac_decoder dirac_encoder dirac_instrumentation RGBtoBMP RGBtoUYVY RGBtoYUV411 RGBtoYUV420 RGBtoYUV422 RGBtoYUV444 UYVYtoRGB UYVYtoYUV422 YUV411toRGB YUV420Down2x2 YUV420ItoYUV422I YUV420pt75filter YUV420toRGB YUV420toYUV422 YUV422ItoYUV420I YUV422toRGB YUV422toUYVY YUV422toYUV420 YUV444toRGB
dircproxy:dircproxy dircproxy-crypt
direnv:direnv
dirmngr:dirmngr dirmngr-client
dirt:dirt
disco:ddfs disco
discodex:discodex discodexcli.py
discount:makepage markdown mkd2html theme
disktype:disktype
distcc:distcc distccd distccmon-text lsdistcc pump
distribution:distribution
ditaa:ditaa
djbdns:axfr-get axfrdns axfrdns-conf dnscache dnscache-conf dnsfilter dnsip dnsipq dnsmx dnsname dnsq dnsqr dnstrace dnstracesort dnstxt pickdns pickdns-conf pickdns-data random-ip rbldns rbldns-conf rbldns-data tinydns tinydns-conf tinydns-data tinydns-edit tinydns-get walldns walldns-conf
djview4:
djvu2pdf:djvu2pdf
djvulibre:any2djvu bzz c44 cjb2 cpaldjvu csepdjvu ddjvu djvm djvmcvt djvudigital djvudump djvuextract djvumake djvups djvused djvuserve djvutoxml djvutxt djvuxmlparser
dmalloc:dmalloc
dmd:catdoc ddemangle detab dmd dustmite rdmd tolf
dmtx-utils:dmtxquery dmtxread dmtxwrite
dns2tcp:dns2tcpc dns2tcpd
dnscrypt-proxy:hostip dnscrypt-proxy
dnscrypt-wrapper:dnscrypt-wrapper
dnsmap:dnsmap dnsmap-bulk
dnsmasq:dnsmasq
dnsperf:dnsperf resperf resperf-report
dnsrend:dnsrend
dnstop:dnstop
dnstracer:dnstracer
docbook-xsl:dbtoepub
docbook2x:db2x_manxml db2x_texixml db2x_xsltproc docbook2man docbook2texi sgml2xml-isoent utf8trans
docbook:
docker-machine:docker-machine
docker-swarm:docker-swarm
docker:docker
dockutil:dockutil
doitlive:doitlive
dos2unix:dos2unix mac2unix unix2dos unix2mac
double-conversion:
doublecpp:doublecpp
doubledown:doubledown doubledown-fsevents doubledown-inotify
dovecot:doveadm doveconf dsync dovecot
doxygen:doxygen
doxymacs:doxymacs_parser
dpkg:dpkg dpkg-architecture dpkg-buildflags dpkg-buildpackage dpkg-checkbuilddeps dpkg-deb dpkg-distaddfile dpkg-divert dpkg-genchanges dpkg-gencontrol dpkg-gensymbols dpkg-maintscript-helper dpkg-mergechangelogs dpkg-name dpkg-parsechangelog dpkg-query dpkg-scanpackages dpkg-scansources dpkg-shlibdeps dpkg-source dpkg-split dpkg-statoverride dpkg-trigger dpkg-vendor update-alternatives
drake:drake
drip:drip
dropbear:dbclient dropbearconvert dropbearkey dropbear
dsd:dsd
dsh:dsh
dsocks:dsocks.sh
dtach:dtach
dtc:convert-dtsv0 dtc dtdiff fdtdump fdtget fdtput
dterm:dterm
dtrx:dtrx
dub:dub
duck:duck
duff:duff
duo_unix:login_duo
duplicity:duplicity rdiffdir
duply:duply
duti:duti
dvd+rw-tools:dvd+rw-booktype dvd+rw-format dvd+rw-mediainfo dvd-ram-control growisofs
dvdauthor:dvdauthor dvddirdel dvdunauthor mpeg2desc spumux spuunmux
dvdbackup:dvdbackup
dvdrtools:cdda2mp3 cdda2ogg cdda2wav devdump dvdrecord isodump isoinfo isovfy mkisofs readcd
dvorak7min:dvorak7min
dvtm:dvtm dvtm-status
dwarf:dwarf
dwatch:dwatch
dwdiff:dwdiff dwfilter
dxflib:
dyld-headers:
dylibbundler:dylibbundler
dynamips:dynamips nvram_export
dynamodb-local:dynamodb-local
e2fsprogs:chattr compile_et lsattr mk_cmds uuidgen badblocks blkid debugfs dumpe2fs e2freefrag e2fsck e2image e2label e2undo filefrag findfs fsck fsck.ext2 fsck.ext3 fsck.ext4 fsck.ext4dev logsave mke2fs mkfs.ext2 mkfs.ext3 mkfs.ext4 mkfs.ext4dev mklost+found resize2fs tune2fs uuidd
easy-git:eg
ebook-tools:einfo lit2epub
ec2-ami-tools:ec2-ami-tools-version ec2-bundle-image ec2-bundle-vol ec2-delete-bundle ec2-download-bundle ec2-migrate-bundle ec2-migrate-manifest ec2-unbundle ec2-upload-bundle
ec2-api-tools:ec2-accept-vpc-peering-connection ec2-activate-license ec2-add-group ec2-add-keypair ec2-allocate-address ec2-assign-private-ip-addresses ec2-associate-address ec2-associate-dhcp-options ec2-associate-route-table ec2-attach-classic-link-vpc ec2-attach-internet-gateway ec2-attach-network-interface ec2-attach-volume ec2-attach-vpn-gateway ec2-authorize ec2-bundle-instance ec2-cancel-bundle-task ec2-cancel-conversion-task ec2-cancel-export-task ec2-cancel-reserved-instances-listing ec2-cancel-spot-instance-requests ec2-cmd ec2-confirm-product-instance ec2-copy-image ec2-copy-snapshot ec2-create-customer-gateway ec2-create-dhcp-options ec2-create-group ec2-create-image ec2-create-instance-export-task ec2-create-internet-gateway ec2-create-keypair ec2-create-network-acl ec2-create-network-acl-entry ec2-create-network-interface ec2-create-placement-group ec2-create-reserved-instances-listing ec2-create-route ec2-create-route-table ec2-create-snapshot ec2-create-spot-datafeed-subscription ec2-create-subnet ec2-create-tags ec2-create-volume ec2-create-vpc ec2-create-vpc-endpoint ec2-create-vpc-peering-connection ec2-create-vpn-connection ec2-create-vpn-connection-route ec2-create-vpn-gateway ec2-deactivate-license ec2-delete-customer-gateway ec2-delete-dhcp-options ec2-delete-disk-image ec2-delete-group ec2-delete-internet-gateway ec2-delete-keypair ec2-delete-network-acl ec2-delete-network-acl-entry ec2-delete-network-interface ec2-delete-placement-group ec2-delete-route ec2-delete-route-table ec2-delete-snapshot ec2-delete-spot-datafeed-subscription ec2-delete-subnet ec2-delete-tags ec2-delete-volume ec2-delete-vpc ec2-delete-vpc-endpoints ec2-delete-vpc-peering-connection ec2-delete-vpn-connection ec2-delete-vpn-connection-route ec2-delete-vpn-gateway ec2-deregister ec2-describe-account-attributes ec2-describe-addresses ec2-describe-availability-zones ec2-describe-bundle-tasks ec2-describe-classic-link-instances ec2-describe-conversion-tasks ec2-describe-customer-gateways ec2-describe-dhcp-options ec2-describe-export-tasks ec2-describe-group ec2-describe-image-attribute ec2-describe-images ec2-describe-instance-attribute ec2-describe-instance-status ec2-describe-instances ec2-describe-internet-gateways ec2-describe-keypairs ec2-describe-licenses ec2-describe-network-acls ec2-describe-network-interface-attribute ec2-describe-network-interfaces ec2-describe-placement-groups ec2-describe-prefix-lists ec2-describe-regions ec2-describe-reserved-instances ec2-describe-reserved-instances-listings ec2-describe-reserved-instances-modifications ec2-describe-reserved-instances-offerings ec2-describe-route-tables ec2-describe-snapshot-attribute ec2-describe-snapshots ec2-describe-spot-datafeed-subscription ec2-describe-spot-instance-requests ec2-describe-spot-price-history ec2-describe-subnets ec2-describe-tags ec2-describe-volume-attribute ec2-describe-volume-status ec2-describe-volumes ec2-describe-vpc-attribute ec2-describe-vpc-classic-link ec2-describe-vpc-endpoint-services ec2-describe-vpc-endpoints ec2-describe-vpc-peering-connections ec2-describe-vpcs ec2-describe-vpn-connections ec2-describe-vpn-gateways ec2-detach-classic-link-vpc ec2-detach-internet-gateway ec2-detach-network-interface ec2-detach-volume ec2-detach-vpn-gateway ec2-disable-vgw-route-propagation ec2-disable-vpc-classic-link ec2-disassociate-address ec2-disassociate-route-table ec2-enable-vgw-route-propagation ec2-enable-volume-io ec2-enable-vpc-classic-link ec2-fingerprint-key ec2-get-console-output ec2-get-password ec2-import-instance ec2-import-keypair ec2-import-volume ec2-migrate-image ec2-modify-image-attribute ec2-modify-instance-attribute ec2-modify-network-interface-attribute ec2-modify-reserved-instances ec2-modify-snapshot-attribute ec2-modify-subnet-attribute ec2-modify-volume-attribute ec2-modify-vpc-attribute ec2-modify-vpc-endpoint ec2-monitor-instances ec2-purchase-reserved-instances-offering ec2-reboot-instances ec2-register ec2-reject-vpc-peering-connection ec2-release-address ec2-replace-network-acl-association ec2-replace-network-acl-entry ec2-replace-route ec2-replace-route-table-association ec2-report-instance-status ec2-request-spot-instances ec2-reset-image-attribute ec2-reset-instance-attribute ec2-reset-network-interface-attribute ec2-reset-snapshot-attribute ec2-resume-import ec2-revoke ec2-run-instances ec2-start-instances ec2-stop-instances ec2-terminate-instances ec2-unassign-private-ip-addresses ec2-unmonitor-instances ec2-upload-disk-image ec2-version ec2actlic ec2addcgw ec2adddopt ec2addgrp ec2addigw ec2addixt ec2addkey ec2addnacl ec2addnae ec2addnic ec2addpcx ec2addpgrp ec2addrt ec2addrtb ec2addsds ec2addsnap ec2addsubnet ec2addtag ec2addvgw ec2addvol ec2addvpc ec2addvpn ec2allocaddr ec2apcx ec2apip ec2assocaddr ec2assocdopt ec2assocrtb ec2attachcl ec2attigw ec2attnic ec2attvgw ec2attvol ec2auth ec2bundle ec2caril ec2cbun ec2cct ec2cim ec2cpi ec2cpimg ec2cpsnap ec2crril ec2csir ec2cvcr ec2cve ec2cxt ec2daa ec2daddr ec2datt ec2daz ec2dbun ec2dcgw ec2dcli ec2dct ec2ddi ec2ddopt ec2deactlic ec2delcgw ec2deldopt ec2delgrp ec2deligw ec2delkey ec2delnacl ec2delnae ec2delnic ec2delpcx ec2delpgrp ec2delrt ec2delrtb ec2delsds ec2delsnap ec2delsubnet ec2deltag ec2delvgw ec2delvol ec2delvpc ec2delvpce ec2delvpn ec2dereg ec2detachcl ec2detigw ec2detnic ec2detvgw ec2detvol ec2dgrp ec2diatt ec2digw ec2dim ec2dimatt ec2din ec2dinatt ec2dins ec2disablecl ec2disaddr ec2disrtb ec2dkey ec2dlic ec2dnacl ec2dnic ec2dnicatt ec2dpcx ec2dpgrp ec2dpl ec2dre ec2dri ec2dril ec2drim ec2drio ec2drp ec2drtb ec2dsds ec2dsir ec2dsnap ec2dsnapatt ec2dsph ec2dsubnet ec2dtag ec2dva ec2dvcl ec2dvcr ec2dve ec2dves ec2dvgw ec2dvol ec2dvolatt ec2dvpc ec2dvpn ec2dvs ec2dxt ec2enablecl ec2erp ec2evio ec2fp ec2gcons ec2gpass ec2ii ec2iin ec2ikey ec2iv ec2ivol ec2kill ec2matt ec2miatt ec2mim ec2mimatt ec2min ec2minatt ec2mnicatt ec2mri ec2msnapatt ec2msubnetatt ec2mva ec2mve ec2mvolatt ec2prio ec2ratt ec2reboot ec2reg ec2reladdr ec2rep ec2repnaclassoc ec2repnae ec2reprt ec2reprtbassoc ec2revoke ec2riatt ec2rim ec2rimatt ec2rinatt ec2rnicatt ec2rpcx ec2rsi ec2rsnapatt ec2run ec2start ec2stop ec2tag ec2udi ec2umin ec2upip ec2ver
ecasound:ecaconvert ecafixdc ecalength ecamonitor ecanormalize ecaplay ecasignalview ecasound libecasound-config libecasoundc-config
echoping:echoping
echoprint-codegen:echoprint-codegen
ecj:
ecl:ecl ecl-config
ecm:ecm unecm
edelta:edelta
editorconfig:editorconfig editorconfig-0.12.0
ee:ee
eet:eet
efl:diffeet ecore_evas_convert edje_cc edje_codegen edje_decc edje_external_inspector edje_inspector edje_pick edje_player edje_recc edje_watch eet eetpack efreetd eina-bench-cmp eldbus-codegen elua embryo_cc eolian_cxx eolian_gen ethumb ethumbd ethumbd_client vieet
eigen:
eina:
ejabberd:ejabberdctl
ejdb:jbbmgr jbfmgr jbhmgr jbtmgr
ekhtml:
elasticsearch:elasticsearch elasticsearch.in.sh plugin
elb-tools:elb-apply-security-groups-to-lb elb-associate-route53-hosted-zone elb-attach-lb-to-subnets elb-cmd elb-configure-healthcheck elb-create-app-cookie-stickiness-policy elb-create-lb elb-create-lb-cookie-stickiness-policy elb-create-lb-listeners elb-create-lb-policy elb-delete-lb elb-delete-lb-listeners elb-delete-lb-policy elb-deregister-instances-from-lb elb-describe-instance-health elb-describe-lb-attributes elb-describe-lb-policies elb-describe-lb-policy-types elb-describe-lbs elb-detach-lb-from-subnets elb-disable-zones-for-lb elb-disassociate-route53-hosted-zone elb-enable-zones-for-lb elb-modify-lb-attributes elb-register-instances-with-lb elb-set-lb-listener-ssl-cert elb-set-lb-policies-for-backend-server elb-set-lb-policies-of-listener elb-version
elementary:elementary_codegen elementary_config elementary_quicklaunch elementary_run elementary_test elm_prefs_cc
elinks:elinks
elixir-build:elixir-build exenv-install exenv-uninstall json
elixir:elixir elixirc iex mix
emacs-clang-complete-async:clang-complete
emacs:ebrowse emacs emacs-24.5 emacsclient etags grep-changelog
embryo:embryo_cc
embulk:embulk
emscripten:em++ em-config emar emcc emcmake emconfigure emlink.py emmake emranlib emrun emscons
enca:enca enconv
enchant:enchant enchant-lsmod
enet:
engine_pkcs11:
enscript:diffpp enscript mkafmmap over sliceprint states
ent:ent
entr:entr
envchain:envchain
envv:envv
eot-utils:eotinfo mkeot
epeg:epeg
epic5:epic5 epic5-1.1.10
eprover:checkproof e_axfilter e_ltb_runner eground ekb_create ekb_delete ekb_ginsert ekb_insert epclextract eproof eproof_ram eprover
epsilon:epsilon start_epsilon_nodes.pl stop_epsilon_nodes.pl
epstool:epstool
epubcheck:epubcheck
erlang:ct_run dialyzer epmd erl erlc escript run_erl to_erl typer
es:es
esniper:esniper
esound:esd esd-config esdcat esdctl esdfilt esdloop esdmon esdplay esdrec esdsample
espeak:espeak
etcd:etcd etcdctl
etcdctl:etcdctl
etl:ETL-config
ettercap:ettercap etterfilter etterlog
euca2ools:euare-accountaliascreate euare-accountaliasdelete euare-accountaliaslist euare-accountcreate euare-accountdel euare-accountdelpolicy euare-accountgetpolicy euare-accountgetsummary euare-accountlist euare-accountlistpolicies euare-accountuploadpolicy euare-getldapsyncstatus euare-groupaddpolicy euare-groupadduser euare-groupcreate euare-groupdel euare-groupdelpolicy euare-groupgetpolicy euare-grouplistbypath euare-grouplistpolicies euare-grouplistusers euare-groupmod euare-groupremoveuser euare-groupuploadpolicy euare-instanceprofileaddrole euare-instanceprofilecreate euare-instanceprofiledel euare-instanceprofilegetattributes euare-instanceprofilelistbypath euare-instanceprofilelistforrole euare-instanceprofileremoverole euare-roleaddpolicy euare-rolecreate euare-roledel euare-roledelpolicy euare-rolegetattributes euare-rolegetpolicy euare-rolelistbypath euare-rolelistpolicies euare-roleupdateassumepolicy euare-roleuploadpolicy euare-servercertdel euare-servercertgetattributes euare-servercertlistbypath euare-servercertmod euare-servercertupload euare-useraddcert euare-useraddkey euare-useraddloginprofile euare-useraddpolicy euare-usercreate euare-usercreatecert euare-userdeactivatemfadevice euare-userdel euare-userdelcert euare-userdelkey euare-userdelloginprofile euare-userdelpolicy euare-userenablemfadevice euare-usergetattributes euare-usergetinfo euare-usergetloginprofile euare-usergetpolicy euare-userlistbypath euare-userlistcerts euare-userlistgroups euare-userlistkeys euare-userlistmfadevices euare-userlistpolicies euare-usermod euare-usermodcert euare-usermodkey euare-usermodloginprofile euare-userresyncmfadevice euare-userupdateinfo euare-useruploadpolicy euca-accept-vpc-peering-connection euca-allocate-address euca-assign-private-ip-addresses euca-associate-address euca-associate-dhcp-options euca-associate-route-table euca-attach-internet-gateway euca-attach-network-interface euca-attach-volume euca-attach-vpn-gateway euca-authorize euca-bundle-and-upload-image euca-bundle-image euca-bundle-instance euca-bundle-vol euca-cancel-bundle-task euca-cancel-conversion-task euca-confirm-product-instance euca-copy-image euca-create-customer-gateway euca-create-dhcp-options euca-create-group euca-create-image euca-create-internet-gateway euca-create-keypair euca-create-network-acl euca-create-network-acl-entry euca-create-network-interface euca-create-route euca-create-route-table euca-create-snapshot euca-create-subnet euca-create-tags euca-create-volume euca-create-vpc euca-create-vpc-peering-connection euca-create-vpn-connection euca-create-vpn-connection-route euca-create-vpn-gateway euca-delete-bundle euca-delete-customer-gateway euca-delete-dhcp-options euca-delete-disk-image euca-delete-group euca-delete-internet-gateway euca-delete-keypair euca-delete-network-acl euca-delete-network-acl-entry euca-delete-network-interface euca-delete-route euca-delete-route-table euca-delete-snapshot euca-delete-subnet euca-delete-tags euca-delete-volume euca-delete-vpc euca-delete-vpc-peering-connection euca-delete-vpn-connection euca-delete-vpn-connection-route euca-delete-vpn-gateway euca-deregister euca-describe-account-attributes euca-describe-addresses euca-describe-availability-zones euca-describe-bundle-tasks euca-describe-conversion-tasks euca-describe-customer-gateways euca-describe-dhcp-options euca-describe-group euca-describe-groups euca-describe-image-attribute euca-describe-images euca-describe-instance-attribute euca-describe-instance-status euca-describe-instance-types euca-describe-instances euca-describe-internet-gateways euca-describe-keypairs euca-describe-network-acls euca-describe-network-interface-attribute euca-describe-network-interfaces euca-describe-regions euca-describe-route-tables euca-describe-snapshot-attribute euca-describe-snapshots euca-describe-subnets euca-describe-tags euca-describe-volumes euca-describe-vpc-attribute euca-describe-vpc-peering-connections euca-describe-vpcs euca-describe-vpn-connections euca-describe-vpn-gateways euca-detach-internet-gateway euca-detach-network-interface euca-detach-volume euca-detach-vpn-gateway euca-disable-vgw-route-propagation euca-disassociate-address euca-disassociate-route-table euca-download-and-unbundle euca-download-bundle euca-enable-vgw-route-propagation euca-fingerprint-key euca-get-console-output euca-get-password euca-get-password-data euca-import-instance euca-import-keypair euca-import-volume euca-install-image euca-modify-image-attribute euca-modify-instance-attribute euca-modify-instance-type euca-modify-network-interface-attribute euca-modify-snapshot-attribute euca-modify-subnet-attribute euca-modify-vpc-attribute euca-monitor-instances euca-reboot-instances euca-register euca-reject-vpc-peering-connection euca-release-address euca-replace-network-acl-association euca-replace-network-acl-entry euca-replace-route euca-replace-route-table-association euca-reset-image-attribute euca-reset-instance-attribute euca-reset-network-interface-attribute euca-reset-snapshot-attribute euca-resume-import euca-revoke euca-run-instances euca-start-instances euca-stop-instances euca-terminate-instances euca-unassign-private-ip-addresses euca-unbundle euca-unbundle-stream euca-unmonitor-instances euca-upload-bundle euca-version euform-cancel-update-stack euform-create-stack euform-delete-stack euform-describe-stack-events euform-describe-stack-resource euform-describe-stack-resources euform-describe-stacks euform-get-template euform-list-stack-resources euform-list-stacks euform-update-stack euform-validate-template eulb-apply-security-groups-to-lb eulb-attach-lb-to-subnets eulb-configure-healthcheck eulb-create-app-cookie-stickiness-policy eulb-create-lb eulb-create-lb-cookie-stickiness-policy eulb-create-lb-listeners eulb-create-lb-policy eulb-delete-lb eulb-delete-lb-listeners eulb-delete-lb-policy eulb-deregister-instances-from-lb eulb-describe-instance-health eulb-describe-lb-policies eulb-describe-lb-policy-types eulb-describe-lbs eulb-detach-lb-from-subnets eulb-disable-zones-for-lb eulb-enable-zones-for-lb eulb-register-instances-with-lb eulb-set-lb-listener-ssl-cert eulb-set-lb-policies-for-backend-server eulb-set-lb-policies-of-listener euscale-create-auto-scaling-group euscale-create-launch-config euscale-create-or-update-tags euscale-delete-auto-scaling-group euscale-delete-launch-config euscale-delete-notification-configuration euscale-delete-policy euscale-delete-scheduled-action euscale-delete-tags euscale-describe-account-limits euscale-describe-adjustment-types euscale-describe-auto-scaling-groups euscale-describe-auto-scaling-instances euscale-describe-auto-scaling-notification-types euscale-describe-launch-configs euscale-describe-metric-collection-types euscale-describe-notification-configurations euscale-describe-policies euscale-describe-process-types euscale-describe-scaling-activities euscale-describe-scheduled-actions euscale-describe-tags euscale-describe-termination-policy-types euscale-disable-metrics-collection euscale-enable-metrics-collection euscale-execute-policy euscale-put-notification-configuration euscale-put-scaling-policy euscale-put-scheduled-update-group-action euscale-resume-processes euscale-set-desired-capacity euscale-set-instance-health euscale-suspend-processes euscale-terminate-instance-in-auto-scaling-group euscale-update-auto-scaling-group euwatch-delete-alarms euwatch-describe-alarm-history euwatch-describe-alarms euwatch-describe-alarms-for-metric euwatch-disable-alarm-actions euwatch-enable-alarm-actions euwatch-get-stats euwatch-list-metrics euwatch-put-data euwatch-put-metric-alarm euwatch-set-alarm-state
euler-py:euler
evas-generic-loaders:
evas:evas_cserve evas_cserve_tool
eventlog:
ex-vi:edit ex vedit vi view
exact-image:bardecode econvert edentify empty-page hocr2pdf optimize2bw
exempi:exempi
exenv:elixir-local-exec exenv
exercism:exercism
exif:exif
exiftags:exifcom exiftags exiftime
exiftool:exiftool
exim:exicyclog exigrep exim exim-4.85-3 exim_checkaccess exim_ctl exim_dbmbuild exim_dumpdb exim_fixdb exim_lock exim_tidydb eximstats exinext exipick exiqgrep exiqsumm exiwhat
exiv2:exiv2
exodriver:
expat:xmlwf
extract_url:extract_url
eye-d3:eyeD3
ezlupdate:ezlupdate
ezstream:ezstream ezstream-file.sh
f3:f3read f3write
faac:faac
faad2:faad
fabric:fab
fail2ban:fail2ban-client fail2ban-regex fail2ban-server
fakeroot:faked fakeroot
falcon:falcon falcon-conf falconeer.fal falconenv.sh faldisass faldoc fallc.fal falpack falrun faltest icomp.sh
fantom:fan fanlaunch fanp fanr fansh fansubstitute fant flux jstub
fasd:fasd
fastbit:ardea fastbit-config fastbitjni fbmerge ibis rara tcapi thula tiapi
fastjar:fastjar grepjar
fatsort:fatsort
fb-adb:fb-adb
fb-client:fb
fbida:exiftran
fcgi:cgi-fcgi
fcgiwrap:fcgiwrap
fcrackzip:fcrackzip zipinfo
fdclone:fd fdsh
fdk-aac-encoder:fdkaac
fdk-aac:aac-enc
fdupes:fdupes
fetch-crl:clean-crl fetch-crl
fetchmail:fetchmail fetchmailconf
fex:fex
ffe:ffe
ffind:ffind
ffmbc:ffmbc ffprobe-bc
ffmpeg2theora:ffmpeg2theora
ffmpeg:ffmpeg ffprobe ffserver
ffmpegthumbnailer:ffmpegthumbnailer
ffms2:ffmsindex
ffts:
fftw:fftw-wisdom fftw-wisdom-to-conf fftwf-wisdom fftwl-wisdom
fibjs:fibjs
ficy:fIcy fPls fResync
fig:docker-compose fig
figlet:chkfont figlet figlist showfigfonts
finatra:finatra
findbugs:fb findbugs
findutils:gfind glocate goldfind gupdatedb gxargs
fio:fio fio-dedupe fio-genzipf fio2gnuplot fio_generate_plots genfio
fish:fish fish_indent mimedb
fits:fits fits-ngserver
fizsh:fizsh
flac123:flac123
flac:flac metaflac
flactag:checkflac discid flactag ripdataflac ripflac
flake:flake
flashrom:flashrom
flasm:flasm
flatbuffers:flatc
flawfinder:flawfinder
fleet-db:fleetdb-server
fleetctl:fleetctl
flex:flex flex++
flickcurl:flickcurl flickcurl-config flickrdf
flow-tools:flow-capture flow-cat flow-dscan flow-expire flow-export flow-fanout flow-filter flow-gen flow-header flow-import flow-log2rrd flow-mask flow-merge flow-nfilter flow-print flow-receive flow-report flow-rpt2rrd flow-rptfmt flow-send flow-split flow-stat flow-tag flow-xlate
flow:flow
flowgrind:flowgrind flowgrind-stop flowgrindd
fltk:fltk-config fluid
fluid-synth:fluidsynth
flvmeta:flvmeta
flvstreamer:flvstreamer rtmpsrv rtmpsuck streams
flyway:flyway
fmdiff:filemerge fmdiff fmdiff3 fmmerge fmresolve
folly:
fon-flash-cli:fon-flash
fondu:dfont2res fondu frombin lumper setfondname showfond tobin ufond
fontconfig:fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate
fontforge:fontforge fontimage fontlint sfddiff
fonttools:pyftinspect pyftmerge pyftsubset ttx
fop:fop
ford:ford
forego:forego
foremost:foremost
fortune:fortune strfile unstr
fossil:fossil
fourstore:4s-admin 4s-backend 4s-backend-copy 4s-backend-destroy 4s-backend-info 4s-backend-passwd 4s-backend-setup 4s-boss 4s-cluster-copy 4s-cluster-create 4s-cluster-destroy 4s-cluster-file-backup 4s-cluster-info 4s-cluster-start 4s-cluster-stop 4s-delete-model 4s-dump 4s-file-backup 4s-httpd 4s-import 4s-info 4s-query 4s-restore 4s-size 4s-ssh-all 4s-ssh-all-parallel 4s-update
fpc:bin2obj chmcmd chmls data2inc delp fd2pascal fpc fpclasschart fpcmake fpcmkcfg fpcres fpcreslipo fpcsubst fpdoc fppkg fprcp h2pas h2paspp instantfpc makeskel mkarmins mkx86ins pas2fpm pas2ut plex postw32 ppcx64 ppdep ppudump ppufiles ppumove ptop pyacc rmcvsdir rstconv unitdiff
fping:fping fping6
fpp:fpp
fq:fq_rcvr fq_sndr fqc fqtool fqd
frag_find:frag_find hash_t_test
fragroute:fragroute fragtest
freealut:freealut-config
freediameter:freeDiameterd freeDiameterd-1.2.0
freeimage:
freeipmi:bmc-config bmc-device bmc-info bmc-watchdog ipmi-chassis ipmi-chassis-config ipmi-config ipmi-console ipmi-dcmi ipmi-detect ipmi-fru ipmi-locate ipmi-oem ipmi-pef-config ipmi-pet ipmi-ping ipmi-power ipmi-raw ipmi-sel ipmi-sensors ipmi-sensors-config ipmiconsole ipmidetect ipmidetectd ipmimonitoring ipmiping ipmipower ipmiseld pef-config rmcp-ping rmcpping
freeling:analyze analyzer analyzer_client dicc2phon threaded_analyzer
freeradius-server:checkrad rad_counter radclient radconf2xml radcrypt raddebug radeapclient radiusd radlast radmin radsniff radsqlrelay radtest radwatch radwho radzap rc.radiusd rlm_dbm_cat rlm_dbm_parser smbencrypt
freeswitch:freeswitch fs_cli fs_encode fs_ivrd fsxs gentls_cert tone2wav
freetds:bsqldb datacopy defncopy fisql freebcp osql tdspool tsql
freetype:freetype-config
freexl:
frege:fregec
frei0r:
frescobaldi:frescobaldi
fribidi:fribidi
fsevent_watch:fsevent_watch
fsh:fcp fsh fshd in.fshd
fsharp:fsharpc fsharpi fsharpiAnyCpu
fsw:fsw fswatch-run fswatch-run-bash fswatch-run-zsh
fswatch:fswatch fswatch-run fswatch-run-bash fswatch-run-zsh
ftgl:
ftimes:ftimes
ftjam:jam
funcoeszz:
fuseki:fuseki-server s-delete s-get s-head s-post s-put s-query s-update s-update-form
fuzzy-find:ff
fwknop:fwknop fwknopd
fzf:fzf fzf-tmux
g2:
gabedit:gabedit
gaffitter:gaffitter
galen:galen
gambit-scheme:gambc-cc gambc-doc gsc gsc-script gsi gsi-script scheme-ieee-1178-1990 scheme-r4rs scheme-r5rs scheme-srfi-0 six six-script
game-music-emu:
gammaray:gammaray
gammu:gammu gammu-config gammu-detect gammu-smsd gammu-smsd-inject gammu-smsd-monitor jadmaker
ganglia:ganglia-config gmetad gmetric gmond gstat
gant:gant
garmintools:garmin_dump garmin_gchart garmin_get_info garmin_gmap garmin_gpx garmin_save_runs
gauche:gauche-cesconv gauche-config gauche-install gauche-package gosh
gauge:gauge gauge_screenshot
gaul:gaul_diagnostics
gawk:awk gawk gawk-4.1.3 igawk
gbdfed:gbdfed
gcab:gcab
gcal:gcal gcal2txt tcal txt2gcal
gcc:c++-5 cpp-5 g++-5 gcc-5 gcc-ar-5 gcc-nm-5 gcc-ranlib-5 gcov-5 gcov-tool-5 gfortran gfortran-5 x86_64-apple-darwin14.4.0-c++-5 x86_64-apple-darwin14.4.0-g++-5 x86_64-apple-darwin14.4.0-gcc-5 x86_64-apple-darwin14.4.0-gcc-5.2.0 x86_64-apple-darwin14.4.0-gcc-ar-5 x86_64-apple-darwin14.4.0-gcc-nm-5 x86_64-apple-darwin14.4.0-gcc-ranlib-5 x86_64-apple-darwin14.4.0-gfortran-5
gconf:gconf-merge-tree gconftool-2 gsettings-data-convert gsettings-schema-convert
gcore:gcore
gcovr:gcovr
gcutil:gcutil
gd:annotate bdftogd gd2copypal gd2togif gd2topng gdcmpgif gdlib-config gdparttopng gdtopng giftogd2 pngtogd pngtogd2 webpng
gdal-grass:
gdal:epsg_tr.py esri2wkt.py gcps2vec.py gcps2wld.py gdal-config gdal2tiles.py gdal2xyz.py gdal_auth.py gdal_calc.py gdal_contour gdal_edit.py gdal_fillnodata.py gdal_grid gdal_merge.py gdal_polygonize.py gdal_proximity.py gdal_rasterize gdal_retile.py gdal_sieve.py gdal_translate gdaladdo gdalbuildvrt gdalchksum.py gdalcompare.py gdaldem gdalenhance gdalident.py gdalimport.py gdalinfo gdallocationinfo gdalmanage gdalmove.py gdalserver gdalsrsinfo gdaltindex gdaltransform gdalwarp mkgraticule.py nearblack ogr2ogr ogrinfo ogrlineref ogrtindex pct2rgb.py rgb2pct.py testepsg
gdbm:gdbm_dump gdbm_load gdbmtool
gdk-pixbuf:gdk-pixbuf-csource gdk-pixbuf-pixdata gdk-pixbuf-query-loaders
gdmap:gdmap
gdnsd:gdnsd_geoip_test gdnsd
gdrive:drive
gearman:gearadmin gearman gearmand
gecode:fzn-gecode mzn-gecode
gedit:gedit gnome-text-editor
gegl:2geglbuffer gegl gegl-convert gegl-imgcmp gegl-slicer gegl-tester geglbuffer-add-image geglbuffer-clock hello-world
genders:nodeattr
gengetopt:gengetopt
genstats:genstats
geocouch:
geogit:geogit geogit-console
geographiclib:CartConvert ConicProj GeoConvert GeodesicProj GeodSolve GeoidEval Gravity MagneticField Planimeter RhumbSolve TransverseMercatorProj geographiclib-get-geoids geographiclib-get-gravity geographiclib-get-magnetic
geoip:geoiplookup geoiplookup6
geoipupdate:geoipupdate
geos:geos-config
geoserver:geoserver
get-flash-videos:get_flash_videos
getdns:
getmail:getmail getmail_fetch getmail_maildir getmail_mbox
gettext:autopoint envsubst gettext gettext.sh gettextize msgattrib msgcat msgcmp msgcomm msgconv msgen msgexec msgfilter msgfmt msggrep msginit msgmerge msgunfmt msguniq ngettext recode-sr-latin xgettext
getxbook:getabook getbnbook getgbook
gexiv2:
gflags:gflags_completions.sh
gforth:gforth gforth-0.7.3 gforth-fast gforth-fast-0.7.3 gforth-itc gforth-itc-0.7.3 gforthmi gforthmi-0.7.3 vmgen vmgen-0.7.3
gh:gh
ghc:ghc ghc-7.10.2 ghc-pkg ghc-pkg-7.10.2 ghci ghci-7.10.2 haddock haddock-ghc-7.10.2 hp2ps hpc hsc2hs runghc runghc-7.10.2 runhaskell
ghi:ghi
ghostscript:dvipdf eps2eps font2c gs gsbj gsc gsdj gsdj500 gslj gslp gsnd gsx lprsetup.sh pdf2dsc pdf2ps pf2afm pfbtopfa pphs printafm ps2ascii ps2epsi ps2pdf ps2pdf12 ps2pdf13 ps2pdf14 ps2pdfwr ps2ps ps2ps2 unix-lpr.sh wftopfa
ghq:ghq
gibbslda:lda
gibo:gibo
gif2png:gif2png web2png
gifify:gifify
giflib:gif2rgb gifasm gifbg gifburst gifclip gifclrmp gifcolor gifcomb gifcompose giffiltr giffix gifflip gifhisto gifinfo gifinter gifinto gifovly gifpos gifrotat gifrsize gifspnge giftext gifwedge icon2gif raw2gif rgb2gif text2gif
giflossy:gifdiff gifsicle
gifsicle:gifdiff gifsicle
gimme:gimme
ginac:ginac-excompiler ginsh viewgar
gist:gist
gistit:gistit
git-annex:git-annex git-annex-shell
git-archive-all:git-archive-all
git-cal:git-cal
git-cola:cola git-cola git-dag
git-crypt:git-crypt
git-encrypt:gitcrypt
git-extras:git-alias git-archive-file git-authors git-back git-bug git-changelog git-chore git-commits-since git-contrib git-count git-create-branch git-delete-branch git-delete-merged-branches git-delete-submodule git-delete-tag git-delta git-effort git-extras git-feature git-fork git-fresh-branch git-gh-pages git-graft git-guilt git-ignore git-info git-line-summary git-local-commits git-lock git-locked git-merge-into git-merge-repo git-missing git-obliterate git-pr git-pull-request git-rebase-patch git-refactor git-release git-rename-tag git-repl git-reset-file git-root git-rscp git-scp git-setup git-show-merged-branches git-show-tree git-show-unmerged-branches git-squash git-summary git-touch git-undo git-unlock
git-fixup:git-fixup
git-flow-avh:git-flow
git-flow:git-flow
git-ftp:git-ftp
git-gerrit:gerrit gerrit-cherry-pick git-gerrit
git-hooks:git-hooks
git-imerge:git-imerge
git-integration:git-integration
git-lfs:git-lfs
git-multipush:git-multipush
git-now:git-now
git-number:git-id git-list git-number
git-octopus:git-octopus
git-open:git-open
git-plus:git-multi git-old-branches git-relation
git-review:git-review
git-sh:git-sh
git-ssh:git-ssh
git-stree:git-stree
git-subrepo:git-subrepo
git-test:git-test
git-tf:git-tf
git-tracker:git-tracker
git-url-sub:git-url-sub
git:git git-credential-osxkeychain git-cvsserver git-receive-pack git-shell git-subtree git-upload-archive git-upload-pack gitk
gitbucket:
giter8:g8
github-release:github-release
gitslave:gits
gitup:gitup
gl2ps:
glassfish:
glbinding:
glew:glewinfo visualinfo
glib-networking:
glib:gapplication gdbus gdbus-codegen gio-querymodules glib-compile-resources glib-compile-schemas glib-genmarshal glib-gettextize glib-mkenums gobject-query gresource gsettings gtester gtester-report
glibmm:
glide:glide
glm:
global:global globash gozilla gtags gtags-cscope htags htags-server
globe:globe
globus-toolkit:globus-domainname globus-gass-cache globus-gass-cache-destroy globus-gass-cache-util globus-gass-server globus-gass-server-shutdown globus-hostname globus-job-cancel globus-job-clean globus-job-get-output globus-job-get-output-helper globus-job-run globus-job-status globus-job-submit globus-makefile-header globus-sh-exec globus-url-copy globus-version globus-xioperf globusrun grid-ca-create grid-ca-package grid-ca-sign grid-cert-diagnostics grid-cert-info grid-cert-request grid-change-pass-phrase grid-proxy-destroy grid-proxy-info grid-proxy-init gsiscp gsisftp gsissh myproxy-change-pass-phrase myproxy-destroy myproxy-get-delegation myproxy-get-trustroots myproxy-info myproxy-init myproxy-logon myproxy-retrieve myproxy-store ssh.d
glog:
gloox:gloox-config
glui:
gmail-backup:gmail-backup
gmime:
gmp:
gmtl:gmtl-config
gnatsd:gnatsd
gnome-common:gnome-autogen.sh gnome-doc-common
gnome-doc-utils:gnome-doc-prepare gnome-doc-tool xml2po
gnome-icon-theme:
gnome-themes-standard:
gnu-apl:AP100 AP210 apl APserver
gnu-barcode:barcode
gnu-cobol:cob-config cobc cobcrun
gnu-getopt:getopt
gnu-indent:gindent gtexinfo2man
gnu-prolog:fd2c gplc gprolog hexgplc ma2asm pl2wam wam2ma
gnu-sed:gsed
gnu-smalltalk:gst gst-blox gst-browser gst-config gst-convert gst-doc gst-load gst-package gst-profile gst-reload gst-remote gst-sunit
gnu-tar:gtar
gnu-time:gtime
gnu-typist:gtypist typefortune
gnu-units:gunits gunits_cur
gnu-which:gwhich
gnupg-pkcs11-scd:gnupg-pkcs11-scd
gnupg2:addgnupghome applygnupgdefaults gpg-connect-agent gpg2 gpgconf gpgkey2ssh gpgparsemail gpgsm gpgsm-gencert.sh gpgv2 kbxutil symcryptrun watchgnupg
gnupg:gpg gpg-zip gpgsplit gpgv
gnuplot:gnuplot
gnustep-make:
gnutls:gnutls-certtool gnutls-cli gnutls-cli-debug gnutls-serv ocsptool psktool srptool
go-app-engine-32:appcfg.py bulkload_client.py bulkloader.py dev_appserver.py download_appstats.py goapp
go-app-engine-64:appcfg.py bulkload_client.py bulkloader.py dev_appserver.py download_appstats.py goapp
go:go godoc gofmt
goaccess:goaccess
gobject-introspection:g-ir-annotation-tool g-ir-compiler g-ir-generate g-ir-scanner
gocr:gocr gocr.tcl
goffice:
golo:golo vanilla-golo
goocanvas:
google-app-engine:_php_runtime.py _python_runtime.py api_server.py appcfg.py bulkload_client.py bulkloader.py dev_appserver.py download_appstats.py endpointscfg.py gen_protorpc.py google_sql.py remote_api_shell.py
google-perftools:pprof
google-sparsehash:
google-sql-tool:google_sql
goolabs:goolabs
gost:gost
gosu:gosu
gotags:gotags
gource:gource
gpac:MP42TS MP4Box MP4Client
gpg-agent:gpg-agent
gpgme:gpgme-config gpgme-tool
gphoto2:gphoto2
gplcver:cver
gpm:gpm
gpp:gpp
gpsbabel:gpsbabel
gpsd:gpsctl gpsdecode gpspipe gpxlogger lcdgps gpsd gpsdctl