0
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
<div class="help">
<div>
<h2>Help</h2>
</div>
<div>
<p>To open a page, simply type the name of the page. e.g:</p>
<pre>ls</pre>
<p>Will open the ls page.</p>
</div>
<div>
<p>Wildcard search by using the * character. e.g:</p>
<pre>ls*</pre>
<p>Will list all pages starting with ls.</p>
</div>
<div>
<p>Using multiple wildcards by anding them together. e.g:</p>
<pre>*conf* -a *git*</pre>
<p>Will list all pages with the words conf and git in their name or description.</p>
</div>
<div>
<p>regex search by using the -r flag. e.g:</p>
<pre>-r "^ls"</pre>
<p>Will list all pages starting with ls.</p>
</div>
<div>
<p>Filter by page section by using the -s flag. e.g:</p>
<pre>ls* -s8</pre>
<p>Will list all pages starting with ls in section 8.</p>
</div>
<div>
<p>
Sections are as follows:
</p>
<table>
<tr><td>1</td><td>Executable programs or shell commands</td></tr>
<tr><td>2</td><td>System calls (functions provided by the kernel)</td></tr>
<tr><td>3</td><td>Library calls (functions within program libraries)</td></tr>
<tr><td>4</td><td>Special files (usually found in /dev)</td></tr>
<tr><td>5</td><td>File formats and conventions, e.g. /etc/passwd</td></tr>
<tr><td>6</td><td>Games</td></tr>
<tr><td>7</td><td>Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7), man-pages(7)</td></tr>
<tr><td>8</td><td>System administration commands (usually only for root)</td></tr>
<tr><td>9</td><td>Kernel routines [Non standard]</td></tr>
</table>
</div>
</div>