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
|
MAN PAGES
________________________________________________________________________________
A man page (short for manual page) is a form of software documentation usually
found on a Unix or Unix-like operating systems. Topics covered include computer
programs (including library and system calls), formal standards and conventions,
and even abstract concepts. A user may invoke a man page by issuing the man
command. [0]
The man utility
________________________________________________________________________________
The 'mandoc' [1] package is the default provider of the 'man' utility.
+------------------------------------------------------------------------------+
| Install mandoc |
+------------------------------------------------------------------------------+
| |
| $ kiss b mandoc && kiss i mandoc |
| |
+------------------------------------------------------------------------------+
By default, man typically uses a terminal pager program such as more or less to
display its output. This can be configured via the $PAGER environment variable.
Linux manuals
________________________________________________________________________________
The Linux man-pages project [2] documents the Linux kernel and C library
interfaces that are employed by user-space programs.
+------------------------------------------------------------------------------+
| Install man-pages |
+------------------------------------------------------------------------------+
| |
| $ kiss b man-pages && kiss i man-pages |
| |
+------------------------------------------------------------------------------+
POSIX manuals
________________________________________________________________________________
These are pages from POSIX.1-2008, Technical Corrigendum 1. Since TC1 appeared
in 2013, it is also known as POSIX.1-2013. The man pages contain descriptions of
the headers, the utilities, and the functions documented in that standard.
+------------------------------------------------------------------------------+
| Install man-pages-posix |
+------------------------------------------------------------------------------+
| |
| $ kiss b man-pages-posix && kiss i man-pages-posix |
| |
+------------------------------------------------------------------------------+
References
________________________________________________________________________________
[0] https://en.wikipedia.org/wiki/Man_page
[1] https://mandoc.bsd.lv/
[2] https://kernel.org/doc/man-pages/
|