-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanpagelist.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
7514 lines (7514 loc) · 98 KB
/
manpagelist.csv
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
Async::MergePoint
Future
Future::Exception
Future::IO::Impl::IOAsync
Future::Mutex
Future::Phrasebook
Future::Utils
IO::Async
IO::Async::Channel
IO::Async::Debug
IO::Async::File
IO::Async::FileStream
IO::Async::Function
IO::Async::Future
IO::Async::Handle
IO::Async::Listener
IO::Async::Loop
IO::Async::Loop::Epoll
IO::Async::Loop::Poll
IO::Async::Loop::Select
IO::Async::LoopTests
IO::Async::Notifier
IO::Async::OS
IO::Async::OS::cygwin
IO::Async::OS::linux
IO::Async::OS::MSWin32
IO::Async::PID
IO::Async::Process
IO::Async::Protocol
IO::Async::Protocol::LineStream
IO::Async::Protocol::Stream
IO::Async::Resolver
IO::Async::Routine
IO::Async::Signal
IO::Async::Socket
IO::Async::Stream
IO::Async::Test
IO::Async::Timer
IO::Async::Timer::Absolute
IO::Async::Timer::Countdown
IO::Async::Timer::Periodic
Struct::Dumb
Test::Future
Test::Future::Deferred
Test::Refcount
ldap.conf
adduser.conf
anacrontab
deluser.conf
mailcap.order
modules
odbc.ini
odbcinst.ini
00-upstream-settings
2to3-2.7
30-systemd-environment-d-generator
404main
7z
7za
7zr
x86_64-linux-gnu-as
apparmor
tc-bpf
bpf-helpers
busybox
Clone
Compose
Dpkg
enchant
Error
pselect
FD_CLR
FD_ISSET
FD_SET
FD_ZERO
ffi
filezilla
Git
HEAD
ibus
x-window-manager
makecert
NAN
neofetch
PAM
pcmanfm
pulseview
RAND
sox
soxeffect
soxi
UPower
URI
utf8
wget
Xorg.wrap
[
_Exit
__after_morecore_hook
__clone2
__fbufsize
__flbf
__fpending
__fpurge
__freadable
__freading
__free_hook
__fsetlocking
__fwritable
__fwriting
__malloc_hook
__malloc_initialize_hook
__memalign_hook
__ppc_get_timebase
__ppc_get_timebase_freq
__ppc_mdoio
__ppc_mdoom
__ppc_set_ppr_low
__ppc_set_ppr_med
__ppc_set_ppr_med_high
__ppc_set_ppr_med_low
__ppc_set_ppr_very_low
__ppc_yield
__realloc_hook
__setfpucw
_exit
_flushlbf
_llseek
_newselect
_syscall
_sysctl
TIFFmemory
a2disconf
a2dismod
a2dissite
a2enconf
a2enmod
a2ensite
a2query
a64l
aa-enabled
aa-exec
aa-remove-unknown
aa-status
aa-teardown
ab
abort
abs
accept
accept
accept4
access
access.conf
accessdb
acct
acct
acl
aclocal
aclocal-1.16
aconnect
acos
acosf
acosh
acoshf
acoshl
acosl
acpi
acpi_listen
acpid
tc-actions
activate-global-python-argcomplete3
add-apt-repository
add-patch
add-shell
add_key
addgnupghome
addgroup
addmntent
addpart
addr2line
address_families
addseverity
adduser
adjtime
adjtime_config
adjtimex
AE
afs_syscall
agetty
aio
aio_cancel
aio_error
aio_fsync
aio_init
aio_read
aio_return
aio_suspend
aio_write
al
al2
alarm
Algorithm::Diff
Algorithm::Diff::XS
Algorithm::DiffOld
Algorithm::Merge
aligned_alloc
alloc_hugepages
alloca
alphasort
alsa-info.sh
alsabat
alsactl
alsactl_init
alsaloop
alsamixer
alsatplg
alsaucm
ambiguous_words
amdgpu
american-english
amidi
amixer
anacron
annotate-output
AnyEvent
AnyEvent::Debug
AnyEvent::DNS
AnyEvent::FAQ
AnyEvent::Handle
AnyEvent::I3
AnyEvent::Impl::Cocoa
AnyEvent::Impl::EV
AnyEvent::Impl::Event
AnyEvent::Impl::EventLib
AnyEvent::Impl::FLTK
AnyEvent::Impl::Glib
AnyEvent::Impl::IOAsync
AnyEvent::Impl::Irssi
AnyEvent::Impl::Perl
AnyEvent::Impl::POE
AnyEvent::Impl::Qt
AnyEvent::Impl::Tk
AnyEvent::Impl::UV
AnyEvent::Intro
AnyEvent::IO
AnyEvent::IO::IOAIO
AnyEvent::IO::Perl
AnyEvent::Log
AnyEvent::Loop
AnyEvent::Socket
AnyEvent::Strict
AnyEvent::TLS
AnyEvent::Util
apache2
apache2ctl
apachectl
apg
apgbfm
aplay
aplaymidi
App::Licensecheck
apparmor.d
apparmor.vim
apparmor_parser
apparmor_status
appletviewer
applygnupgdefaults
apport-bug
apport-cli
apport-collect
apport-unpack
appres
appstreamcli
apropos
apt
apt-add-repository
apt-cache
apt-cdrom
apt-config
apt-extracttemplates
apt-file
apt-ftparchive
apt-get
apt-key
apt-mark
apt-patterns
apt-secure
apt-sortpkgs
apt-transport-http
apt-transport-https
apt-transport-mirror
apt.conf
apt_auth.conf
apt_preferences
aptd
aptdcon
AptPkg
AptPkg::Cache
AptPkg::Config
AptPkg::hash
AptPkg::PkgRecords
AptPkg::Policy
AptPkg::Source
AptPkg::System
AptPkg::Version
ar
arch
arch_prctl
Archive::Zip
Archive::Zip::FAQ
Archive::Zip::MemberRead
Archive::Zip::Tree
archpath
arecord
arecordmidi
argz
argz_add
argz_add_sep
argz_append
argz_count
argz_create
argz_create_sep
argz_delete
argz_extract
argz_insert
argz_next
argz_replace
argz_stringify
arm2hpdl
arm_fadvise
arm_fadvise64_64
arm_sync_file_range
armscii-8
arp
arpd
arptables-nft
arptables-nft-restore
arptables-nft-save
as
ascii
asctime
asctime_r
aseqdump
aseqnet
asin
asinf
asinh
asinhf
asinhl
asinl
asn1parse
aspell
aspell-autobuildhash
aspell-import
asprintf
assert
assert_perror
Async::Interrupt
at
at.allow
at.deny
atan
atan2
atan2f
atan2l
atanf
atanh
atanhf
atanhl
atanl
atd
atexit
ati
atobm
atof
atoi
atol
atoll
atoq
atq
atrm
attr
attributes
auth_destroy
Authen::SASL
Authen::SASL::Perl
Authen::SASL::Perl::ANONYMOUS
Authen::SASL::Perl::CRAM_MD5
Authen::SASL::Perl::DIGEST_MD5
Authen::SASL::Perl::EXTERNAL
Authen::SASL::Perl::GSSAPI
Authen::SASL::Perl::LOGIN
Authen::SASL::Perl::PLAIN
authnone_create
authunix_create
authunix_create_default
autoconf
autoheader
autom4te
automake
automake-1.16
autoreconf
autoscan
autoupdate
avahi-autoipd
avahi-autoipd.action
avahi-browse
avahi-browse-domains
avahi-daemon
avahi-daemon.conf
avahi-publish
avahi-publish-address
avahi-publish-service
avahi-resolve
avahi-resolve-address
avahi-resolve-host-name
avahi-set-host-name
avahi.hosts
avahi.service
awk
axfer
axfer-list
axfer-transfer
b2sum
B::Hooks::EndOfScope
B::Hooks::EndOfScope::PP
B::Hooks::EndOfScope::XS
B::Hooks::OP::Check
backend
urxvt-background
backportpackage
backtrace
backtrace_symbols
backtrace_symbols_fd
badblocks
base32
base64
basename
basename
bash
bash-builtins
bashbug
tc-basic
batch
bc
bccmd
bcmp
bcopy
bdflush
bdftopcf
bdftruncate
be16toh
be32toh
be64toh
urxvt-bell-command
tc-pfifo
bind
bind_textdomain_codeset
bindresvport
bindtextdomain
binfmt.d
bio
biosdecode
bitesize
bitmap
blkdeactivate
blkdiscard
blkid
blkzone
urxvt-block-graphics-to-ascii
blockdev
bluemoon
bluetooth-sendto
bluetoothctl
bluetoothd
bmtoa
boltctl
boltd
boot
bootctl
bootparam
bootup
bpf
break
bridge
british-english
brk
brltty
broadwayd
bsd-from
bsd-write
bsd_signal
bsearch
bstring
bswap
bswap_16
bswap_32
bswap_64
btattach
btmgmt
btmon
btowc
btree
bts
build-rdeps
builtins
bunzip2
busctl
bwrap
byteorder
bzcat
bzcmp
bzdiff
bzegrep
bzero
bzexe
bzfgrep
bzgrep
bzip2
bzip2recover
bzless
bzmore
bzr
bzr-buildpackage
bzr.bzr
c++
c++filt
c89
c89-gcc
c99
c99-gcc
c_rehash
ca
CA.pl
cabs
cabsf
cabsl
cacheflush
cacos
cacosf
cacosh
cacoshf
cacoshl
cacosl
Cairo
Cairo::GObject
tc-cake
cal
calendar
calf
calfjackhost
calibrate_ppa
calloc
callrpc
canberra-gtk-play
cancel
canonicalize_file_name
capabilities
capability.conf
capget
capset
capsh
captoinfo
Capture::Tiny
carg
cargf
cargl
casin
casinf
casinh
casinhf
casinhl
casinl
caspol
cat
catan
catanf
catanh
catanhf
catanhl
catanl
catchsegv
catclose
catgets
catman
catopen
cbc_crypt
tc-cbq-details
cbrt
cbrtf
cbrtl
tc-cbs
cc
cccheck
cciss
ccos
ccosf
ccosh
ccoshf
ccoshl
ccosl
cct
cd-create-profile
cd-fix-profile
cd-it8
ceil
ceilf
ceill
cert2spc
certmgr
cexp
cexp2
cexp2f
cexp2l
cexpf
cexpl
cfdisk
cfgetispeed
cfgetospeed
cfmakeraw
cfree
cfsetispeed
cfsetospeed
cfsetspeed
cgdisk
CGI
CGI::Carp
CGI::Cookie
CGI::Fast
CGI::HTML::Functions
CGI::Pretty
CGI::Push
CGI::Util
tc-cgroup
cgroup_namespaces
cgroups
chacl
chafa
chage
chardet
chardet3
chardetect
chardetect3
charmap
charsets
chat
chattr
chcon
chcpu
chdir
chdist
check-language-support
check-mir
check-symbols
check_forensic
checkbashisms
checkgid
chfn
chgpasswd
chgrp
chktrust
chmem
chmod
chmod
tc-choke
choom
chown
chown
chown32
chpasswd
chroot
chroot
chrt
chsh
chvt
cifsiostat
cilc
cimag
cimagf
cimagl
ciphers
ciptool
CIRCLEQ_ENTRY
CIRCLEQ_HEAD
CIRCLEQ_INIT
CIRCLEQ_INSERT_AFTER
CIRCLEQ_INSERT_BEFORE
CIRCLEQ_INSERT_HEAD
CIRCLEQ_INSERT_TAIL
CIRCLEQ_REMOVE
ckbcomp
cksum
Class::Accessor
Class::Accessor::Fast
Class::Accessor::Faster
Class::Method::Modifiers
Class::XSAccessor
Class::XSAccessor::Array
Class::XSAccessor::Heavy
classes.conf
classifier_tester
clear
clear_console
clearenv
clearerr
clearerr_unlocked
cli
cli-al
cli-csc
cli-gacutil
cli-resgen
cli-sn
cli-wrapper
client.conf
urxvt-clipboard-osc
clnt_broadcast
clnt_call
clnt_control
clnt_create
clnt_destroy
clnt_freeres
clnt_geterr
clnt_pcreateerror
clnt_perrno
clnt_perror
clnt_spcreateerror
clnt_sperrno
clnt_sperror
clntraw_create
clnttcp_create
clntudp_bufcreate
clntudp_create
clock
clock_getcpuclockid
clock_getres
clock_getres
clock_gettime
clock_gettime
clock_nanosleep
clock_settime
clock_settime
clog
clog10
clog10f
clog10l
clog2
clog2f
clog2l
clogf
clogl
clone
clone2
close
closedir
closelog
openproc
cmp
cms
cmsg
CMSG_ALIGN
CMSG_DATA
CMSG_FIRSTHDR
CMSG_LEN
CMSG_NXTHDR
CMSG_SPACE
cntraining
tc-codel
codepage
col
colcrt
colormgr
colrm
column
combine_lang_model
combine_tessdata
combinediff
comm
dcut
common::sense
complex
compose
config
config.guess
config.sub
urxvt-confirm-paste
confstr
conj
conjf
conjl
connect
tc-connmark
console-setup
console_codes
console_ioctl
Const::Fast
Contextual::Return
Contextual::Return::Failure
Type::CONTRIBUTING
copy_file_range
copysign
copysignf
copysignl
core
corelist
cos
cosf
cosh
coshf
coshl
cosl
cowbuilder-dist
cowpoke
cp
cp1251
cp1252
cpan
cpan5.28-x86_64-linux-gnu
cpgr
cpio
cpow
cpowf
cpowl
cpp
cpp-9
cppw
cproj
cprojf
cprojl
CPU_ALLOC
CPU_ALLOC_SIZE
CPU_AND
CPU_AND_S
CPU_CLR
CPU_CLR_S
CPU_COUNT
CPU_COUNT_S
CPU_EQUAL
CPU_EQUAL_S
CPU_FREE
CPU_ISSET
CPU_ISSET_S
CPU_OR
CPU_OR_S
CPU_SET
CPU_SET_S
CPU_XOR
CPU_XOR_S
CPU_ZERO
CPU_ZERO_S
cpuid
cpuset
cracklib-check
cracklib-format
cracklib-packer
cracklib-unpacker
crc32
crda
creal
crealf
creall
creat
create-cracklib-dict
create_module
credentials
crl
crl2pkcs7
crlupdate
cron
crontab
crontab
crypto
cs2cs
csharp
csin
csinf
csinh
csinhf
csinhl
csinl
csplit
csqrt
csqrtf
csqrtl
tc-csum
ct
ctan
ctanf
ctanh
ctanhf
ctanhl
ctanl
ctermid
ctime
ctime_r
ctrlaltdel
ctstat
cups
cups-browsed
cups-browsed.conf
cups-calibrate
cups-deviced
cups-driverd
cups-exec
cups-files.conf
cups-genppdupdate
cups-lpd
cups-snmp
cups-snmp.conf
cupsaccept
reject
cupsaddsmb
cupsctl
cupsd
cupsd-helper
cupsd-logs
cupsd.conf
cupsdisable
cupsenable
cupsfilter
cupsreject
cupstestdsc
cupstestppd
curl
cuserid
cut
cvs-debc
cvs-debi
cvs-debrelease
cvs-debuild
cvt
cvtsudoers
daemon
daemon
dash
Data::Dump
Data::Dump::Filtered
Data::Dump::Trace
Data::OptList
date
Date::Format
Date::Language
Date::Language::Bulgarian
Date::Language::Hungarian
Date::Parse
dawg2wordlist
daylight
db
DBE
dbopen
dbus-cleanup-sockets
dbus-daemon
dbus-launch
dbus-monitor
dbus-run-session
dbus-send
dbus-update-activation-environment
dbus-uuidgen
dc
dcgettext
dch
dch-repeat
dcmd
dcngettext
dconf
dconf
dconf-service
dcontrol
dd
dd-list
ddp
ddstdecode
deallocvt
deb
deb-buildinfo
deb-changelog
deb-changes
deb-conffiles
deb-control
deb-extra-override
deb-old
deb-origin
deb-override
deb-postinst
deb-postrm
deb-preinst
deb-prerm
deb-reversion
deb-shlibs
deb-split
deb-src-control
deb-src-files
deb-src-rules
deb-substvars
deb-symbols
deb-systemd-helper
deb-systemd-invoke
deb-triggers
deb-version
deb3
deb822