xref: /illumos-gate/usr/src/man/man1/man.1 (revision bf5d9f18edeb77c14df996d367853599bdd43fd1)
1.\"
2.\" The Berkeley software License Agreement specifies the terms and conditions
3.\" for redistribution.
4.\"
5.\"
6.\" Copyright (c) 1980 Regents of the University of California.
7.\" Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved.
8.\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
9.\" Copyright 2016 Nexenta Systems, Inc.
10.\"
11.Dd May 13, 2017
12.Dt MAN 1
13.Os
14.Sh NAME
15.Nm man
16.Nd find and display reference manual pages
17.Sh SYNOPSIS
18.Nm
19.Op Fl
20.Op Fl adFlrt
21.Op Fl T Ar macro-package
22.Op Fl M Ar path
23.Op Fl s Ar section
24.Ar name ...
25.Nm
26.Op Fl M Ar path
27.Op Fl s Ar section
28.Fl k
29.Ar keyword
30.Ar ...
31.Nm
32.Op Fl M Ar path
33.Op Fl s Ar section
34.Fl f
35.Ar
36.Nm
37.Op Fl M Ar path
38.Fl w
39.Sh DESCRIPTION
40The
41.Nm
42command displays information from the reference manuals.
43It displays complete manual pages that you select by
44.Ar name ,
45or one-line summaries selected either by
46.Ar keyword
47.Pq Fl k ,
48or by the name of an associated file
49.Pq Fl f .
50If no manual page is located,
51.Nm
52prints an error message.
53.Ss "Source Format"
54Reference Manual pages are marked up with either
55.Xr man 5 ,
56or
57.Xr mdoc 5
58language tags.
59The
60.Nm
61command recognizes the type of markup and
62processes the file accordingly.
63.
64.Ss "Location of Manual Pages"
65.
66The online Reference Manual page directories are conventionally located in
67.Pa /usr/share/man .
68Each directory corresponds to a
69section of the manual.
70Since these directories are optionally installed, they might not reside on your
71host.
72You might have to mount
73.Pa /usr/share/man
74from a host on which they do reside.
75The
76.Nm
77command reformats a page whenever it is requested.
78.Pp
79If the standard output is not a terminal, or if the
80.Fl
81flag is given,
82.Nm
83pipes its output through
84.Xr cat 1 .
85Otherwise,
86.Nm
87pipes its output through a pager such as
88.Xr more 1
89to handle paging and underlining on the screen.
90.Sh OPTIONS
91The following options are supported:
92.Bl -tag -width indent
93.It Fl a
94Shows all manual pages matching
95.Ar name
96within the
97.Ev MANPATH
98search path.
99Manual pages are displayed in the order found.
100.It Fl d
101Debugs.
102Displays what a section-specifier evaluates to, method used for searching, and
103paths searched by
104.Nm .
105.It Fl f Ar file ...
106Attempts to locate manual pages related to any of the given
107.Ar file
108names.
109It strips the leading path name components from each
110.Ar file ,
111and then prints one-line summaries containing the resulting basename or names.
112This option also uses the
113.Pa whatis
114database.
115.It Fl F
116This option is present for backwards compatibility and is documented
117here for reference only.
118It performs no function.
119.It Fl k Ar keyword ...
120Prints out one-line summaries from the
121.Pa whatis
122database (table of contents) that contain any of the given
123.Ar keyword .
124The
125.Pa whatis
126database is created using the
127.Fl w
128option.
129.It Fl l
130Lists all manual pages found matching
131.Ar name
132within the search path.
133.It Fl M Ar path
134Specifies an alternate search path for manual pages.
135The
136.Ar path
137is a colon-separated list of directories that contain manual page directory
138subtrees.
139For example, if
140.Ar path
141is
142.Pa /usr/share/man:/usr/local/man ,
143.Nm
144searches for
145.Ar name
146in the standard location, and then
147.Pa /usr/local/man .
148When used with the
149.Fl k ,
150.Fl f ,
151or
152.Fl w
153options, the
154.Fl M
155option must appear first.
156Each directory in the
157.Ar path
158is assumed to contain subdirectories of the form
159.Pa man* ,
160one for each section.
161This option overrides the
162.Ev MANPATH
163environment variable.
164.It Fl r
165Reformats the manual page, checking for formatting errors, but does not
166display it.
167.It Fl s Ar section
168Specifies sections of the manual for
169.Nm
170to search.
171The directories searched for
172.Ar name
173are limited to those specified by
174.Ar section .
175.Ar section
176can be a numerical digit, perhaps followed by one or more letters
177to match the desired section of the manual, for example,
178.Li "3head".
179Also,
180.Ar section
181can be a word, for example,
182.Li local ,
183.Li new ,
184.Li old ,
185.Li public .
186.Ar section
187can also be a letter.
188To specify multiple sections, separate each section with a comma.
189This option overrides the
190.Ev MANPATH
191environment variable and the
192.Pa man.cf
193file.
194See
195.Sx Search Path
196below for an explanation of how
197.Nm
198conducts its search.
199.It Fl t
200Arranges for the specified manual pages to be sent to the default
201printer as PostScript.
202.It Fl T Ar macro-package
203This option is present for backwards compatibility and is documented
204here for reference only.
205It performs no function.
206.It Fl w
207Updates the
208.Nm whatis
209database.
210.El
211.Sh OPERANDS
212The following operand is supported:
213.Bl -tag -width indent
214.It Ar name
215The name of a standard utility or a keyword.
216.El
217.Sh USAGE
218The usage of
219.Nm
220is described below:
221.
222.Ss "Manual Page Sections"
223.
224Entries in the reference manuals are organized into
225.Em sections .
226A section
227name consists of a major section name, typically a single digit, optionally
228followed by a subsection name, typically one or more letters.
229An unadorned major section name, for example,
230.Qq 9 ,
231does not act as an abbreviation for
232the subsections of that name, such as
233.Qq 9e ,
234.Qq 9f ,
235or
236.Qq 9s .
237That is, each subsection must be searched separately by
238.Nm
239.Fl s .
240Each section contains descriptions apropos to a particular reference category,
241with subsections refining these distinctions.
242See the
243.Em intro
244manual pages for an explanation of the classification used in this release.
245.
246.Ss "Search Path"
247.
248Before searching for a given
249.Ar name ,
250.Nm
251constructs a list of candidate directories and sections.
252It searches for
253.Ar name
254in the directories specified by the
255.Ev MANPATH
256environment variable.
257.Lp
258In the absence of
259.Ev MANPATH ,
260.Nm
261constructs its search path based upon the
262.Ev PATH
263environment variable, primarily by substituting
264.Li man
265for the last component of the
266.Ev PATH
267element.
268Special provisions are added to account for unique characteristics of
269directories such as
270.Pa /sbin ,
271.Pa /usr/ucb ,
272.Pa /usr/xpg4/bin ,
273and others.
274If the file argument contains a
275.Qq /
276character, the
277.Em dirname
278portion of the argument is used in place of
279.Ev PATH
280elements to construct the search path.
281.Lp
282Within the manual page directories,
283.Nm
284confines its search to the
285sections specified in the following order:
286.Bl -bullet
287.It
288.Ar sections
289specified on the command line with the
290.Fl s
291option
292.It
293.Ar sections
294embedded in the
295.Ev MANPATH
296environment variable
297.It
298.Ar sections
299specified in the
300.Pa man.cf
301file for each directory specified in the
302.Ev MANPATH
303environment variable
304.El
305If none of the above exist,
306.Nm
307searches each directory in the manual
308page path, and displays the first matching manual page found.
309.Lp
310The
311.Pa man.cf
312file has the following format:
313.Lp
314.Dl Pf MANSECTS= Ar section Ns Oo , Ns Ar section Oc Ns ...
315.Lp
316Lines beginning with
317.Sq Li #
318and blank lines are considered comments, and are
319ignored.
320Each directory specified in
321.Ev MANPATH
322can contain a manual page
323configuration file, specifying the default search order for that directory.
324.Sh "Referring to Other Manual Pages"
325If the first line of the manual page is a reference to another manual
326page entry fitting the pattern:
327.Lp
328.Dl \&.so man*/ Ns Em sourcefile
329.Lp
330.Nm
331processes the indicated file in place of the current one.
332The reference must be expressed as a path name relative to the root of the
333manual page directory subtree.
334.Lp
335When the second or any subsequent line starts with
336.Sy \&.so ,
337.Nm
338ignores it;
339.Xr troff 1
340or
341.Xr nroff 1
342processes the request in the usual manner.
343.Sh ENVIRONMENT VARIABLES
344See
345.Xr environ 5
346for descriptions of the following environment variables
347that affect the execution of
348.Nm man :
349.Ev LANG ,
350.Ev LC_ALL ,
351.Ev LC_CTYPE ,
352.Ev LC_MESSAGES ,
353and
354.Ev NLSPATH .
355.Bl -tag -width MANWIDTH
356.It Ev MANPATH
357A colon-separated list of directories; each directory can be followed by a
358comma-separated list of sections.
359If set, its value overrides
360.Pa /usr/share/man
361as the default directory search path, and the
362.Pa man.cf
363file as the default section search path.
364The
365.Fl M
366and
367.Fl s
368flags, in turn, override these values.
369.It Ev MANWIDTH
370Width of the output.
371If set to the special value
372.Qq Sy TTY
373.Po or
374.Qq Sy tty
375.Pc ,
376and output is to terminal, auto-detect terminal width.
377.It Ev PAGER
378A program to use for interactively delivering
379output to the screen.
380If not set,
381.Sq Nm more Fl s
382is used.
383See
384.Xr more 1 .
385.El
386.Sh FILES
387.Bl -tag -width indent
388.It Pa /usr/share/man
389Root of the standard manual page directory subtree
390.It Pa /usr/share/man/man?/*
391Unformatted manual entries
392.It Pa /usr/share/man/whatis
393Table of contents and keyword database
394.It Pa man.cf
395Default search order by section
396.El
397.Sh EXIT STATUS
398.Ex -std man
399.Sh EXAMPLES
400.
401.Ss Example 1: Creating a PostScript Version of a man page
402.
403The following example spools the
404.Xr pipe 2
405man page in PostScript to the default printer:
406.Pp
407.Dl % man -t -s 2 pipe
408.Pp
409Note that
410.Xr mandoc 1
411can be used to obtain the PostScript content directly.
412.Ss Example 2: Creating a Text Version of a man page
413The following example creates the
414.Xr pipe 2
415man page in ASCII text:
416.Pp
417.Dl % man pipe.2 | col -x -b > pipe.text
418.Sh CODE SET INDEPENDENCE
419Enabled.
420.Sh INTERFACE STABILITY
421.Sy Committed .
422.Sh SEE ALSO
423.Xr apropos 1 ,
424.Xr cat 1 ,
425.Xr col 1 ,
426.Xr mandoc 1 ,
427.Xr more 1 ,
428.Xr whatis 1 ,
429.Xr environ 5 ,
430.Xr man 5 ,
431.Xr mdoc 5
432.Sh NOTES
433The
434.Fl f
435and
436.Fl k
437options use the
438.Nm whatis
439database, which is
440created with the
441.Fl w
442option.
443.Sh BUGS
444The manual is supposed to be reproducible either on a phototypesetter or on an
445ASCII terminal.
446However, on a terminal some information (indicated by font changes, for
447instance) is lost.
448