-
Notifications
You must be signed in to change notification settings - Fork 87
/
ubuntu-manual-pages.txt
9965 lines (9965 loc) · 150 KB
/
ubuntu-manual-pages.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
[
2to3
2to3-2.7
2to3-3.5
a2ping
a2x
a64l
aa-enabled
aa-exec
aafire
aaflip
aainfo
aa-remove-unknown
aasavefont
aa-status
aatest
abort
abs
accept
accept4
access
access.conf
accessdb
acct
acl
aclocal
aclocal-1.15
acos
acosf
acosh
acoshf
acoshl
acosl
acpi_available
acpid
acpi_listen
acronym
add-apt-repository
addgnupghome
addgroup
add_key
addmntent
addpart
addr2line
addseverity
add-shell
adduser
adduser.conf
adjtime
adjtimex
ads
aecat
aemakeflic
aewan
afio
afm2afm
afm2pl
afm2tfm
afs_syscall
__after_morecore_hook
agetty
aio
aio_cancel
aio_error
aio_fsync
aio_init
aio_read
aio_return
aio_suspend
aio_write
alarm
aleph
Algorithm::Diff
Algorithm::DiffOld
Algorithm::Diff::XS
Algorithm::Merge
aliases
aligned_alloc
alioth
allcm
allec
allneeded
alloca
alloc_hugepages
AllPlanes
alphasort
amazon
amstex
anvil
apm_available
apparmor
apparmor.d
apparmor_parser
apparmor_status
apparmor.vim
appletviewer
applygnupgdefaults
apport-bug
apport-cli
apport-collect
apport-unpack
appres
apropos
apt
apt-add-repository
apt-cache
apt-cdrom
apt.conf
apt-config
apt-extracttemplates
apt-ftparchive
apt-get
apt-key
apt-mark
apt_preferences
apt-secure
apt-sortpkgs
ar
arch
Archive::Zip
Archive::Zip::FAQ
Archive::Zip::MemberRead
Archive::Zip::Tree
archpkg
arch_prctl
archwiki
ares_cancel
ares_create_query
ares_destroy
ares_destroy_options
ares_dup
ares_expand_name
ares_expand_string
ares_fds
ares_free_data
ares_free_hostent
ares_free_string
ares_gethostbyaddr
ares_gethostbyname
ares_gethostbyname_file
ares_getnameinfo
ares_get_servers
ares_getsock
ares_inet_ntop
ares_inet_pton
ares_init
ares_init_options
ares_library_cleanup
ares_library_init
ares_mkquery
ares_parse_aaaa_reply
ares_parse_a_reply
ares_parse_mx_reply
ares_parse_naptr_reply
ares_parse_ns_reply
ares_parse_ptr_reply
ares_parse_soa_reply
ares_parse_srv_reply
ares_parse_txt_reply
ares_process
ares_query
ares_save_options
ares_search
ares_send
ares_set_local_dev
ares_set_local_ip4
ares_set_local_ip6
ares_set_servers
ares_set_servers_csv
ares_set_socket_callback
ares_strerror
ares_timeout
ares_version
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
arlatex
arm_fadvise
arm_fadvise64_64
armscii-8
arm_sync_file_range
arp
arpd
arxiv
as
ascii
ascii2binary
ascii2uni
asciiart
asciidoc
asciidoctor
asciijump
asciinema
asciiview
asctime
asctime_r
asin
asinf
asinh
asinhf
asinhl
asinl
ask
ASN1_add_oid_module
ASN1_generate_nconf
ASN1_generate_v3
ASN1_OBJECT_free
ASN1_OBJECT_new
asn1parse
ASN1_STRING_cmp
ASN1_STRING_data
ASN1_STRING_dup
ASN1_STRING_free
ASN1_STRING_length
ASN1_STRING_length_set
ASN1_STRING_new
ASN1_STRING_print
ASN1_STRING_print_ex
ASN1_STRING_print_ex_fp
ASN1_STRING_set
ASN1_STRING_to_UTF8
ASN1_STRING_type
ASN1_STRING_type_new
ASN1_TIME_adj
ASN1_TIME_check
ASN1_TIME_diff
ASN1_TIME_print
ASN1_TIME_set
ASN1_TIME_set_string
asprintf
assert
assert_perror
at
at.allow
atan
atan2
atan2f
atan2l
atanf
atanh
atanhf
atanhl
atanl
atd
at.deny
atexit
atof
atoi
atol
atoll
atoq
atq
atrm
attributes
aur
austlii
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
authorized_keys
authunix_create
authunix_create_default
autoconf
autoheader
autoinst
autom4te
automake
automake-1.15
autoreconf
autoscan
autoupdate
aview
awk
backend-spec
backtrace
backtrace_symbols
backtrace_symbols_fd
badblocks
bareword::filehandles
base32
base64
basename
bash
bashbug
bash-builtins
batch
bbcnews
bbox
bcache-super-show
bcmp
bcopy
bdflush
be16toh
be32toh
be64toh
beav
BF_cbc_encrypt
BF_cfb64_encrypt
BF_decrypt
BF_ecb_encrypt
BF_encrypt
BF_ofb64_encrypt
BF_options
BF_set_key
B::Hooks::OP::Check
bibdoiadd
bibtex
bibtex8
bibtex.original
bibzbladd
binary2ascii
bind
bindechexascii
bindresvport
bindtextdomain
bind_textdomain_codeset
binfmt.d
bing
bio
BIO_append_filename
BIO_callback_ctrl
BIO_ctrl
BIO_ctrl_get_read_request
BIO_ctrl_get_write_guarantee
BIO_ctrl_pending
BIO_ctrl_reset_read_request
BIO_ctrl_wpending
BIO_debug_callback
BIO_destroy_bio_pair
BIO_do_accept
BIO_do_connect
BIO_eof
BIO_f_base64
BIO_f_buffer
BIO_f_cipher
BIO_find_type
BIO_flush
BIO_f_md
BIO_f_null
BIO_free
BIO_free_all
BIO_f_ssl
BIO_get_accept_port
BIO_get_bind_mode
BIO_get_callback
BIO_get_callback_arg
BIO_get_cipher_ctx
BIO_get_cipher_status
BIO_get_close
BIO_get_conn_hostname
BIO_get_conn_int_port
BIO_get_conn_ip
BIO_get_conn_port
BIO_get_fd
BIO_get_fp
BIO_get_info_callback
BIO_get_md
BIO_get_md_ctx
BIO_get_mem_data
BIO_get_mem_ptr
BIO_get_num_renegotiates
BIO_get_read_request
BIO_get_retry_BIO
BIO_get_retry_reason
BIO_gets
BIO_get_ssl
BIO_get_write_buf_size
BIO_get_write_guarantee
BIO_int_ctrl
BIO_make_bio_pair
BIO_method_type
BIO_new
BIO_new_accept
BIO_new_bio_pair
BIO_new_buffer_ssl_connect
BIO_new_CMS
BIO_new_connect
BIO_new_fd
BIO_new_file
BIO_new_fp
BIO_new_mem_buf
BIO_new_socket
BIO_new_ssl
BIO_new_ssl_connect
BIO_next
BIO_pending
BIO_pop
BIO_ptr_ctrl
BIO_push
BIO_puts
BIO_read
BIO_read_filename
BIO_reset
BIO_retry_type
BIO_rw_filename
BIO_s_accept
BIO_s_bio
BIO_s_connect
biosdecode
BIO_seek
BIO_set
BIO_set_accept_bios
BIO_set_accept_port
BIO_set_bind_mode
BIO_set_callback
BIO_set_callback_arg
BIO_set_cipher
BIO_set_close
BIO_set_conn_hostname
BIO_set_conn_int_port
BIO_set_conn_ip
BIO_set_conn_port
BIO_set_fd
BIO_set_fp
BIO_set_info_callback
BIO_set_md
BIO_set_mem_buf
BIO_set_mem_eof_return
BIO_set_nbio
BIO_set_nbio_accept
BIO_set_ssl
BIO_set_ssl_mode
BIO_set_ssl_renegotiate_bytes
BIO_set_ssl_renegotiate_timeout
BIO_set_write_buf_size
BIO_s_fd
BIO_s_file
BIO_should_io_special
BIO_should_read
BIO_should_retry
BIO_should_write
BIO_shutdown_wr
BIO_s_mem
BIO_s_null
BIO_ssl_copy_session_id
BIO_ssl_shutdown
BIO_s_socket
BIO_tell
BIO_vfree
BIO_wpending
BIO_write
BIO_write_filename
BitmapBitOrder
BitmapPad
BitmapUnit
Bit::Vector
Bit::Vector::Overload
Bit::Vector::String
BlackPixel
BlackPixelOfScreen
blkdiscard
blkid
blockdev
blowfish
bmon
bn
BN_add
BN_add_word
bn_add_words
BN_bin2bn
BN_BLINDING_convert
BN_BLINDING_convert_ex
BN_BLINDING_create_param
BN_BLINDING_free
BN_BLINDING_get_flags
BN_BLINDING_get_thread_id
BN_BLINDING_invert
BN_BLINDING_invert_ex
BN_BLINDING_new
BN_BLINDING_set_flags
BN_BLINDING_set_thread_id
BN_BLINDING_thread_id
BN_BLINDING_update
BN_bn2bin
BN_bn2dec
BN_bn2hex
BN_bn2mpi
bn_check_top
BN_clear
BN_clear_bit
BN_clear_free
BN_cmp
bn_cmp_words
BN_copy
BN_CTX_end
BN_CTX_free
BN_CTX_get
BN_CTX_init
BN_CTX_new
BN_CTX_start
BN_dec2bn
BN_div
BN_div_recp
BN_div_word
bn_div_words
bn_dump
BN_dup
BN_exp
bn_expand
bn_expand2
bn_fix_top
BN_free
BN_from_montgomery
BN_gcd
BN_GENCB_call
BN_GENCB_set
BN_GENCB_set_old
BN_generate_prime
BN_generate_prime_ex
BN_get_word
BN_hex2bn
BN_init
bn_internal
BN_is_bit_set
BN_is_odd
BN_is_one
BN_is_prime
BN_is_prime_ex
BN_is_prime_fasttest
BN_is_prime_fasttest_ex
BN_is_word
BN_is_zero
BN_lshift
BN_lshift1
BN_mask_bits
BN_mod
BN_mod_add
BN_mod_exp
BN_mod_inverse
BN_mod_mul
BN_mod_mul_montgomery
BN_mod_mul_reciprocal
BN_mod_sqr
BN_mod_sub
BN_mod_word
BN_MONT_CTX_copy
BN_MONT_CTX_free
BN_MONT_CTX_init
BN_MONT_CTX_new
BN_MONT_CTX_set
BN_mpi2bn
BN_mul
bn_mul_add_words
bn_mul_comba4
bn_mul_comba8
bn_mul_high
bn_mul_low_normal
bn_mul_low_recursive
bn_mul_normal
bn_mul_part_recursive
bn_mul_recursive
BN_mul_word
bn_mul_words
BN_new
BN_nnmod
BN_num_bits
BN_num_bits_word
BN_num_bytes
BN_one
bn_print
BN_print
BN_print_fp
BN_pseudo_rand
BN_pseudo_rand_range
BN_rand
BN_rand_range
BN_RECP_CTX_free
BN_RECP_CTX_init
BN_RECP_CTX_new
BN_RECP_CTX_set
BN_rshift
BN_rshift1
BN_set_bit
bn_set_high
bn_set_low
bn_set_max
BN_set_word
BN_sqr
bn_sqr_comba4
bn_sqr_comba8
bn_sqr_normal
bn_sqr_recursive
bn_sqr_words
BN_sub
BN_sub_word
bn_sub_words
BN_swap
BN_to_montgomery
BN_ucmp
BN_value_one
bn_wexpand
BN_zero
body_checks
bookfinder
bookman
boot
bootchart.conf
bootchart.conf.d
bootctl
bootparam
bootup
bounce
bpf
break
bridge
brk
broadwayd
bsd-from
bsd_signal
bsd-write
bsearch
bstring
btag
btowc
btree
btrfs
btrfs-balance
btrfs-check
btrfsck
btrfs-convert
btrfs-debug-tree
btrfs-device
btrfs-filesystem
btrfs-find-root
btrfs-image
btrfs-inspect-internal
btrfs-map-logical
btrfs-property
btrfs-qgroup
btrfs-quota
btrfs-receive
btrfs-replace
btrfs-rescue
btrfs-restore
btrfs-scrub
btrfs-select-super
btrfs-send
btrfs-show-super
btrfs-subvolume
btrfstune
btrfs-zero-log
buffer
BUF_memdup
BUF_MEM_free
BUF_MEM_grow
BUF_MEM_new
BUF_MEM_new_ex
BUF_strdup
BUF_strlcat
BUF_strlcpy
BUF_strndup
bugmenot
bugzilla
builtins
bundledoc
bunzip2
busctl
busybox
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
byteorder
bzcat
bzcmp
bzdiff
bzegrep
bzero
bzexe
bzfgrep
bzgrep
bzip2
bzip2recover
bzless
bzmore
c++
c2ph
c89
c89-gcc
c99
c99-gcc
ca
cablesearch
cabs
cabsf
cabsl
Cache
Cache::Entry
Cache::File
Cache::File::Entry
Cache::File::Handle
Cache::File::Heap
cacheflush
Cache::IOString
Cache::Memory
Cache::Memory::Entry
Cache::Memory::HeapElem
Cache::Null
Cache::Null::Entry
Cache::RemovalStrategy
Cache::RemovalStrategy::FIFO
Cache::RemovalStrategy::LRU
Cache::Tester
cacos
cacosf
cacosh
cacoshf
cacoshl
cacosl
caff
cal
calendar
calloc
callrpc
canonical
canonicalize_file_name
capabilities
capability.conf
capget
CA.pl
capset
capsh
captoinfo
carg
cargf
cargl
Carp::Clan
casin
casinf
casinh
casinhf
casinhl
casinl
cat
catan
catanf
catanh
catanhf
catanhl
catanl
catchsegv
catclose
catgets
catman
catopen
cbc_crypt
cbrt
cbrtf
cbrtl
cc
cciss
ccos
ccosf
ccosh
ccoshf
ccoshl
ccosl
cd-create-profile
cd-fix-profile
cd-it8
ceil
ceilf
ceill
CellsOfScreen
cexp
cexp2
cexp2f
cexp2l
cexpf
cexpl
cfdisk
cfgetispeed
cfgetospeed
c++filt
cfmakeraw
cfree
cfsetispeed
cfsetospeed
cfsetspeed
cgdisk
CGI
CGI::Carp
CGI::Cookie
CGI::Fast
CGI::HTML::Functions
CGI::Pretty
CGI::Push
CGI::Util
chacl
chage
chardet
chardet3
chardetect
chardetect3
charmap
charsets
chattr
chcon
chcpu
chdir
check-enhancements
check-language-support
checkrestart
chfn
chgpasswd
chgrp
chkfont
chmod
chown
chown32
chpasswd
chronic
chroot
chrt
chsh
chvt
cia
cidr_table
cifsiostat
cimag
cimagf
cimagl
ciphers
CIRCLEQ_ENTRY
CIRCLEQ_HEAD
CIRCLEQ_INIT
CIRCLEQ_INSERT_AFTER
CIRCLEQ_INSERT_BEFORE
CIRCLEQ_INSERT_HEAD
CIRCLEQ_INSERT_TAIL
CIRCLEQ_REMOVE
cite
ckbcomp
cksum
Class::Accessor
Class::Accessor::Chained
Class::Accessor::Chained::Fast
Class::Accessor::Fast
Class::Accessor::Faster
Class::Data::Inheritable
Class::ErrorHandler
Class::MethodMaker
Class::MethodMaker::array
Class::MethodMaker::Constants
Class::MethodMaker::Engine
Class::MethodMaker::hash
Class::MethodMaker::OptExt
Class::MethodMaker::scalar
Class::MethodMaker::V1Compat
Class::Method::Modifiers
Class::Singleton
Class::XSAccessor
Class::XSAccessor::Array
Class::XSAccessor::Heavy
cleanup
clear
clear_console
clearenv
clearerr
clearerr_unlocked
ClientWhitePointOfCCC
cliki
clnt_broadcast
clnt_call
clnt_control
clnt_create
clnt_destroy
clnt_freeres
clnt_geterr
clnt_pcreateerror
clnt_perrno
clnt_perror
clntraw_create
clnt_spcreateerror
clnt_sperrno
clnt_sperror
clnttcp_create
clntudp_bufcreate
clntudp_create
clock
clock_getcpuclockid
clock_getres
clock_gettime
clock_nanosleep
clock_settime
clog
clog10
clog10f
clog10l
clog2
clog2f
clog2l
clogf
clogl
clone
__clone2
clone2
close
closedir
closelog
cmake
cmake-buildsystem
cmake-commands
cmake-compile-features
cmake-developer
cmake-generator-expressions
cmake-generators
cmake-language
cmake-modules
cmake-packages
cmake-policies
cmake-properties
cmake-qt
cmake-toolchains
cmake-variables
cmp
cms
CMS_add0_cert
CMS_add0_crl
CMS_add0_recipient_key
CMS_add1_cert
CMS_add1_crl
CMS_add1_ReceiptRequest
CMS_add1_recipient_cert
CMS_add1_signer
CMS_compress
CMS_decrypt
CMS_encrypt
CMS_final
cmsg
CMSG_ALIGN
CMSG_DATA
CMS_get0_content
CMS_get0_eContentType
CMS_get0_RecipientInfos
CMS_get0_SignerInfos
CMS_get0_signers
CMS_get0_type
CMS_get1_certs
CMS_get1_crls
CMS_get1_ReceiptRequest
CMSG_FIRSTHDR
CMSG_LEN
CMSG_NXTHDR
CMSG_SPACE
CMS_ReceiptRequest_create0
CMS_ReceiptRequest_get0_values
CMS_RecipientInfo_decrypt
CMS_RecipientInfo_encrypt
CMS_RecipientInfo_kekri_get0_id
CMS_RecipientInfo_kekri_id_cmp
CMS_RecipientInfo_ktri_cert_cmp
CMS_RecipientInfo_ktri_get0_signer_id
CMS_RecipientInfo_set0_key
CMS_RecipientInfo_set0_pkey
CMS_RecipientInfo_type
CMS_set1_eContentType