xref: /titanic_50/usr/src/man/man1/man.1 (revision 95c635efb7c3b86efc493e0447eaec7aecca3f0f)
1*95c635efSGarrett D'Amore.\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
2c10c16deSRichard Lowe.\" Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved.
3*95c635efSGarrett D'Amore.\" Copyright (c) 1980 Regents of the University of California.
4*95c635efSGarrett D'Amore.\" The Berkeley software License Agreement specifies the terms and conditions
5*95c635efSGarrett D'Amore.\" for redistribution.
6*95c635efSGarrett D'Amore.Dd Jul 18, 2014
7*95c635efSGarrett D'Amore.Dt MAN 1
8*95c635efSGarrett D'Amore.Os
9*95c635efSGarrett D'Amore.Sh NAME
10*95c635efSGarrett D'Amore.Nm man
11*95c635efSGarrett D'Amore.Nd find and display reference manual pages
12*95c635efSGarrett D'Amore.Sh SYNOPSIS
13*95c635efSGarrett D'Amore.Nm
14*95c635efSGarrett D'Amore.Op Fl
15*95c635efSGarrett D'Amore.Op Fl adFlrt
16*95c635efSGarrett D'Amore.Op Fl T Ar macro-package
17*95c635efSGarrett D'Amore.Op Fl M Ar path
18*95c635efSGarrett D'Amore.Op Fl s Ar section
19*95c635efSGarrett D'Amore.Ar name ...
20*95c635efSGarrett D'Amore.Nm
21*95c635efSGarrett D'Amore.Op Fl M Ar path
22*95c635efSGarrett D'Amore.Op Fl s Ar section
23*95c635efSGarrett D'Amore.Fl k
24*95c635efSGarrett D'Amore.Ar keyword
25*95c635efSGarrett D'Amore.Ar ...
26*95c635efSGarrett D'Amore.Nm
27*95c635efSGarrett D'Amore.Op Fl M Ar path
28*95c635efSGarrett D'Amore.Op Fl s Ar section
29*95c635efSGarrett D'Amore.Fl f
30*95c635efSGarrett D'Amore.Ar
31*95c635efSGarrett D'Amore.Nm
32*95c635efSGarrett D'Amore.Op Fl M Ar path
33*95c635efSGarrett D'Amore.Fl w
34*95c635efSGarrett D'Amore.Sh DESCRIPTION
35*95c635efSGarrett D'AmoreThe
36*95c635efSGarrett D'Amore.Nm
37*95c635efSGarrett D'Amorecommand displays information from the reference manuals. It
38*95c635efSGarrett D'Amoredisplays complete manual pages that you select by
39*95c635efSGarrett D'Amore.Ar name ,
40*95c635efSGarrett D'Amoreor one-line summaries selected either by
41*95c635efSGarrett D'Amore.Ar keyword
42*95c635efSGarrett D'Amore.Pq Fl k ,
43*95c635efSGarrett D'Amoreor by the name of an associated file
44*95c635efSGarrett D'Amore.Pq Fl f .
45*95c635efSGarrett D'AmoreIf no manual page is located,
46*95c635efSGarrett D'Amore.Nm
47*95c635efSGarrett D'Amoreprints an error message.
48*95c635efSGarrett D'Amore.Ss "Source Format"
49*95c635efSGarrett D'AmoreReference Manual pages are marked up with either
50*95c635efSGarrett D'Amore.Xr man 5 ,
51*95c635efSGarrett D'Amoreor
52*95c635efSGarrett D'Amore.Xr mdoc 5
53*95c635efSGarrett D'Amorelanguage tags. The
54*95c635efSGarrett D'Amore.Nm
55*95c635efSGarrett D'Amorecommand recognizes the type of markup and
56*95c635efSGarrett D'Amoreprocesses the file accordingly.
57*95c635efSGarrett D'Amore.
58*95c635efSGarrett D'Amore.Ss "Location of Manual Pages"
59*95c635efSGarrett D'Amore.
60c10c16deSRichard LoweThe online Reference Manual page directories are conventionally located in
61*95c635efSGarrett D'Amore.Pa /usr/share/man .
62*95c635efSGarrett D'AmoreEach directory corresponds to a
63c10c16deSRichard Lowesection of the manual. Since these directories are optionally installed, they
64*95c635efSGarrett D'Amoremight not reside on your host. You might have to mount
65*95c635efSGarrett D'Amore.Pa /usr/share/man
66c10c16deSRichard Lowefrom a host on which they do reside.
67*95c635efSGarrett D'AmoreThe
68*95c635efSGarrett D'Amore.Nm
69*95c635efSGarrett D'Amorecommand reformats a page whenever it is requested.
70*95c635efSGarrett D'Amore.Pp
71*95c635efSGarrett D'AmoreIf the standard output is not a terminal, or if the
72*95c635efSGarrett D'Amore.Fl
73*95c635efSGarrett D'Amoreflag is given,
74*95c635efSGarrett D'Amore.Nm
75*95c635efSGarrett D'Amorepipes its output through
76*95c635efSGarrett D'Amore.Xr cat 1 .
77*95c635efSGarrett D'AmoreOtherwise,
78*95c635efSGarrett D'Amore.Nm
79*95c635efSGarrett D'Amorepipes its output through a pager such as
80*95c635efSGarrett D'Amore.Xr more 1
81*95c635efSGarrett D'Amoreto handle paging and underlining on the screen.
82*95c635efSGarrett D'Amore.Sh OPTIONS
83c10c16deSRichard LoweThe following options are supported:
84*95c635efSGarrett D'Amore.Bl -tag -width indent
85*95c635efSGarrett D'Amore.It Fl a
86*95c635efSGarrett D'AmoreShows all manual pages matching
87*95c635efSGarrett D'Amore.Ar name
88*95c635efSGarrett D'Amorewithin the
89*95c635efSGarrett D'Amore.Ev MANPATH
90*95c635efSGarrett D'Amoresearch path. Manual pages are displayed in the order found.
91*95c635efSGarrett D'Amore.It Fl d
92c10c16deSRichard LoweDebugs. Displays what a section-specifier evaluates to, method used for
93*95c635efSGarrett D'Amoresearching, and paths searched by
94*95c635efSGarrett D'Amore.Nm .
95*95c635efSGarrett D'Amore.It Fl f Ar file ...
96*95c635efSGarrett D'AmoreAttempts to locate manual pages related to any of the given
97*95c635efSGarrett D'Amore.Ar file
98*95c635efSGarrett D'Amorenames. It strips the leading path name components from each
99*95c635efSGarrett D'Amore.Ar file ,
100c10c16deSRichard Loweand then prints one-line summaries containing the resulting basename or names.
101*95c635efSGarrett D'AmoreThis option also uses the
102*95c635efSGarrett D'Amore.Pa whatis
103*95c635efSGarrett D'Amoredatabase.
104*95c635efSGarrett D'Amore.It Fl F
105*95c635efSGarrett D'AmoreThis option is present for backwards compatibility and is documented
106*95c635efSGarrett D'Amorehere for reference only.  It performs no function.
107*95c635efSGarrett D'Amore.It Fl k Ar keyword ...
108*95c635efSGarrett D'AmorePrints out one-line summaries from the
109*95c635efSGarrett D'Amore.Pa whatis
110*95c635efSGarrett D'Amoredatabase (table of contents) that contain any of the given
111*95c635efSGarrett D'Amore.Ar keyword .
112*95c635efSGarrett D'AmoreThe
113*95c635efSGarrett D'Amore.Pa whatis
114*95c635efSGarrett D'Amoredatabase is created using the
115*95c635efSGarrett D'Amore.Fl w
116*95c635efSGarrett D'Amoreoption.
117*95c635efSGarrett D'Amore.It Fl l
118*95c635efSGarrett D'AmoreLists all manual pages found matching
119*95c635efSGarrett D'Amore.Ar name
120*95c635efSGarrett D'Amorewithin the search path.
121*95c635efSGarrett D'Amore.It Fl M Ar path
122*95c635efSGarrett D'AmoreSpecifies an alternate search path for manual pages. The
123*95c635efSGarrett D'Amore.Ar path
124*95c635efSGarrett D'Amoreis a colon-separated list of directories that contain manual page directory
125*95c635efSGarrett D'Amoresubtrees. For example, if
126*95c635efSGarrett D'Amore.Ar path
127*95c635efSGarrett D'Amoreis
128*95c635efSGarrett D'Amore.Pa /usr/share/man:/usr/local/man ,
129*95c635efSGarrett D'Amore.Nm
130*95c635efSGarrett D'Amoresearches for
131*95c635efSGarrett D'Amore.Ar name
132*95c635efSGarrett D'Amorein the standard location, and then
133*95c635efSGarrett D'Amore.Pa /usr/local/man .
134*95c635efSGarrett D'AmoreWhen used with the
135*95c635efSGarrett D'Amore.Fl k ,
136*95c635efSGarrett D'Amore.Fl f ,
137*95c635efSGarrett D'Amoreor
138*95c635efSGarrett D'Amore.Fl w
139*95c635efSGarrett D'Amoreoptions, the
140*95c635efSGarrett D'Amore.Fl M
141*95c635efSGarrett D'Amoreoption must appear first. Each directory in the
142*95c635efSGarrett D'Amore.Ar path
143*95c635efSGarrett D'Amoreis assumed to contain subdirectories of the form
144*95c635efSGarrett D'Amore.Pa man* ,
145*95c635efSGarrett D'Amoreone for each section. This option overrides the
146*95c635efSGarrett D'Amore.Ev MANPATH
147*95c635efSGarrett D'Amoreenvironment variable.
148*95c635efSGarrett D'Amore.It Fl r
149*95c635efSGarrett D'AmoreReformats the manual page, checking for formatting errors, but does not
150*95c635efSGarrett D'Amoredisplay it.
151*95c635efSGarrett D'Amore.It Fl s Ar section
152*95c635efSGarrett D'AmoreSpecifies sections of the manual for
153*95c635efSGarrett D'Amore.Nm
154*95c635efSGarrett D'Amoreto search. The directories searched for
155*95c635efSGarrett D'Amore.Ar name
156*95c635efSGarrett D'Amoreare limited to those specified by
157*95c635efSGarrett D'Amore.Ar section .
158*95c635efSGarrett D'Amore.Ar section
159*95c635efSGarrett D'Amorecan be a numerical digit, perhaps followed by one or more letters
160*95c635efSGarrett D'Amoreto match the desired section of the manual, for example,
161*95c635efSGarrett D'Amore.Li "3libucb".
162*95c635efSGarrett D'AmoreAlso,
163*95c635efSGarrett D'Amore.Ar section
164*95c635efSGarrett D'Amorecan be a word, for example,
165*95c635efSGarrett D'Amore.Li local ,
166*95c635efSGarrett D'Amore.Li new ,
167*95c635efSGarrett D'Amore.Li old ,
168*95c635efSGarrett D'Amore.Li public .
169*95c635efSGarrett D'Amore.Ar section
170*95c635efSGarrett D'Amorecan also be a letter. To specify multiple sections,
171*95c635efSGarrett D'Amoreseparate each section with a comma. This option overrides the
172*95c635efSGarrett D'Amore.Ev MANPATH
173*95c635efSGarrett D'Amoreenvironment variable and the
174*95c635efSGarrett D'Amore.Pa man.cf
175*95c635efSGarrett D'Amorefile. See
176*95c635efSGarrett D'Amore.Sx Search Path
177*95c635efSGarrett D'Amorebelow for an explanation of how
178*95c635efSGarrett D'Amore.Nm
179*95c635efSGarrett D'Amoreconducts its search.
180*95c635efSGarrett D'Amore.It Fl t
181*95c635efSGarrett D'AmoreArranges for the specified manual pages to be sent to the default
182*95c635efSGarrett D'Amoreprinter as PostScript.
183*95c635efSGarrett D'Amore.It Fl T Ar macro-package
184*95c635efSGarrett D'AmoreThis option is present for backwards compatibility and is documented
185*95c635efSGarrett D'Amorehere for reference only.  It performs no function.
186*95c635efSGarrett D'Amore.It Fl w
187*95c635efSGarrett D'AmoreUpdates the
188*95c635efSGarrett D'Amore.Nm whatis
189*95c635efSGarrett D'Amoredatabase.
190*95c635efSGarrett D'Amore.El
191*95c635efSGarrett D'Amore.Sh OPERANDS
192c10c16deSRichard LoweThe following operand is supported:
193*95c635efSGarrett D'Amore.Bl -tag -width indent
194*95c635efSGarrett D'Amore.It Ar name
195c10c16deSRichard LoweThe name of a standard utility or a keyword.
196*95c635efSGarrett D'Amore.El
197*95c635efSGarrett D'Amore.Sh USAGE
198*95c635efSGarrett D'AmoreThe usage of
199*95c635efSGarrett D'Amore.Nm
200*95c635efSGarrett D'Amoreis described below:
201*95c635efSGarrett D'Amore.
202*95c635efSGarrett D'Amore.Ss "Manual Page Sections"
203*95c635efSGarrett D'Amore.
204*95c635efSGarrett D'AmoreEntries in the reference manuals are organized into
205*95c635efSGarrett D'Amore.Em sections .
206*95c635efSGarrett D'AmoreA section
207c10c16deSRichard Lowename consists of a major section name, typically a single digit, optionally
208c10c16deSRichard Lowefollowed by a subsection name, typically one or more letters. An unadorned
209*95c635efSGarrett D'Amoremajor section name, for example,
210*95c635efSGarrett D'Amore.Qq 9 ,
211*95c635efSGarrett D'Amoredoes not act as an abbreviation for
212*95c635efSGarrett D'Amorethe subsections of that name, such as
213*95c635efSGarrett D'Amore.Qq 9e ,
214*95c635efSGarrett D'Amore.Qq 9f ,
215*95c635efSGarrett D'Amoreor
216*95c635efSGarrett D'Amore.Qq 9s .
217*95c635efSGarrett D'AmoreThat is, each subsection must be searched separately by
218*95c635efSGarrett D'Amore.Nm
219*95c635efSGarrett D'Amore.Fl s .
220c10c16deSRichard LoweEach section contains descriptions apropos to a particular reference category,
221*95c635efSGarrett D'Amorewith subsections refining these distinctions. See the
222*95c635efSGarrett D'Amore.Em intro
223*95c635efSGarrett D'Amoremanual pages for an explanation of the classification used in this release.
224*95c635efSGarrett D'Amore.
225*95c635efSGarrett D'Amore.Ss "Search Path"
226*95c635efSGarrett D'Amore.
227*95c635efSGarrett D'AmoreBefore searching for a given
228*95c635efSGarrett D'Amore.Ar name ,
229*95c635efSGarrett D'Amore.Nm
230*95c635efSGarrett D'Amoreconstructs a list of candidate directories and sections.
231*95c635efSGarrett D'AmoreIt searches for
232*95c635efSGarrett D'Amore.Ar name
233*95c635efSGarrett D'Amorein the directories specified by the
234*95c635efSGarrett D'Amore.Ev MANPATH
235*95c635efSGarrett D'Amoreenvironment variable.
236*95c635efSGarrett D'Amore.Lp
237*95c635efSGarrett D'AmoreIn the absence of
238*95c635efSGarrett D'Amore.Ev MANPATH ,
239*95c635efSGarrett D'Amore.Nm
240*95c635efSGarrett D'Amoreconstructs its search path based upon the
241*95c635efSGarrett D'Amore.Ev PATH
242*95c635efSGarrett D'Amoreenvironment variable, primarily by substituting
243*95c635efSGarrett D'Amore.Li man
244*95c635efSGarrett D'Amorefor the last component of the
245*95c635efSGarrett D'Amore.Ev PATH
246*95c635efSGarrett D'Amoreelement. Special provisions are added
247*95c635efSGarrett D'Amoreto account for unique characteristics of directories such as
248*95c635efSGarrett D'Amore.Pa /sbin ,
249*95c635efSGarrett D'Amore.Pa /usr/ucb ,
250*95c635efSGarrett D'Amore.Pa /usr/xpg4/bin ,
251*95c635efSGarrett D'Amoreand others. If the file argument contains
252*95c635efSGarrett D'Amorea
253*95c635efSGarrett D'Amore.Qq /
254*95c635efSGarrett D'Amorecharacter, the
255*95c635efSGarrett D'Amore.Em dirname
256*95c635efSGarrett D'Amoreportion of the argument is used in place of
257*95c635efSGarrett D'Amore.Ev PATH
258*95c635efSGarrett D'Amoreelements to construct the search path.
259*95c635efSGarrett D'Amore.Lp
260*95c635efSGarrett D'AmoreWithin the manual page directories,
261*95c635efSGarrett D'Amore.Nm
262*95c635efSGarrett D'Amoreconfines its search to the
263c10c16deSRichard Lowesections specified in the following order:
264*95c635efSGarrett D'Amore.Bl -bullet
265*95c635efSGarrett D'Amore.It
266*95c635efSGarrett D'Amore.Ar sections
267*95c635efSGarrett D'Amorespecified on the command line with the
268*95c635efSGarrett D'Amore.Fl s
269*95c635efSGarrett D'Amoreoption
270*95c635efSGarrett D'Amore.It
271*95c635efSGarrett D'Amore.Ar sections
272*95c635efSGarrett D'Amoreembedded in the
273*95c635efSGarrett D'Amore.Ev MANPATH
274*95c635efSGarrett D'Amoreenvironment variable
275*95c635efSGarrett D'Amore.It
276*95c635efSGarrett D'Amore.Ar sections
277*95c635efSGarrett D'Amorespecified in the
278*95c635efSGarrett D'Amore.Pa man.cf
279*95c635efSGarrett D'Amorefile for each directory specified in the
280*95c635efSGarrett D'Amore.Ev MANPATH
281*95c635efSGarrett D'Amoreenvironment variable
282*95c635efSGarrett D'Amore.El
283*95c635efSGarrett D'AmoreIf none of the above exist,
284*95c635efSGarrett D'Amore.Nm
285*95c635efSGarrett D'Amoresearches each directory in the manual
286c10c16deSRichard Lowepage path, and displays the first matching manual page found.
287*95c635efSGarrett D'Amore.Lp
288*95c635efSGarrett D'AmoreThe
289*95c635efSGarrett D'Amore.Pa man.cf
290*95c635efSGarrett D'Amorefile has the following format:
291*95c635efSGarrett D'Amore.Lp
292*95c635efSGarrett D'Amore.Dl Pf MANSECTS= Ar section , Ns Op Ar section...
293*95c635efSGarrett D'Amore.Lp
294*95c635efSGarrett D'AmoreLines beginning with
295*95c635efSGarrett D'Amore.Sq Li #
296*95c635efSGarrett D'Amoreand blank lines are considered comments, and are
297*95c635efSGarrett D'Amoreignored. Each directory specified in
298*95c635efSGarrett D'Amore.Ev MANPATH
299*95c635efSGarrett D'Amorecan contain a manual page
300c10c16deSRichard Loweconfiguration file, specifying the default search order for that directory.
301*95c635efSGarrett D'Amore.Sh "Referring to Other Manual Pages"
302*95c635efSGarrett D'AmoreIf the first line of the manual page is a reference to another manual
303c10c16deSRichard Lowepage entry fitting the pattern:
304*95c635efSGarrett D'Amore.Lp
305*95c635efSGarrett D'Amore.Dl \&.so man*/\fIsourcefile\fR
306*95c635efSGarrett D'Amore.Lp
307*95c635efSGarrett D'Amore.Nm
308*95c635efSGarrett D'Amoreprocesses the indicated file in place of the current one. The
309c10c16deSRichard Lowereference must be expressed as a path name relative to the root of the manual
310c10c16deSRichard Lowepage directory subtree.
311*95c635efSGarrett D'Amore.Lp
312c10c16deSRichard LoweWhen the second or any subsequent line starts with \fB\&.so\fR, \fBman\fR
313c10c16deSRichard Loweignores it; \fBtroff\fR(1) or \fBnroff\fR(1) processes the request in the usual
314c10c16deSRichard Lowemanner.
315*95c635efSGarrett D'Amore.Sh ENVIRONMENT VARIABLES
316*95c635efSGarrett D'AmoreSee
317*95c635efSGarrett D'Amore.Xr environ 5
318*95c635efSGarrett D'Amorefor descriptions of the following environment variables
319*95c635efSGarrett D'Amorethat affect the execution of
320*95c635efSGarrett D'Amore.Nm man :
321*95c635efSGarrett D'Amore.Ev LANG ,
322*95c635efSGarrett D'Amore.Ev LC_ALL ,
323*95c635efSGarrett D'Amore.Ev LC_CTYPE ,
324*95c635efSGarrett D'Amore.Ev LC_MESSAGES ,
325*95c635efSGarrett D'Amoreand
326*95c635efSGarrett D'Amore.Ev NLSPATH .
327*95c635efSGarrett D'Amore.Bl -tag -width indent
328*95c635efSGarrett D'Amore.It Ev MANPATH
329c10c16deSRichard LoweA colon-separated list of directories; each directory can be followed by a
330c10c16deSRichard Lowecomma-separated list of sections. If set, its value overrides
331c10c16deSRichard Lowe\fB/usr/share/man\fR as the default directory search path, and the \fBman.cf\fR
332c10c16deSRichard Lowefile as the default section search path. The \fB-M\fR and \fB-s\fR flags, in
333c10c16deSRichard Loweturn, override these values.)
334*95c635efSGarrett D'Amore.It Ev PAGER
335*95c635efSGarrett D'AmoreA program to use for interactively delivering
336*95c635efSGarrett D'Amoreoutput to the screen. If not set,
337*95c635efSGarrett D'Amore.Sq Nm more Fl s
338*95c635efSGarrett D'Amoreis used. See
339*95c635efSGarrett D'Amore.Xr more 1 .
340*95c635efSGarrett D'Amore.El
341*95c635efSGarrett D'Amore.Sh FILES
342*95c635efSGarrett D'Amore.Bl -tag -width indent
343*95c635efSGarrett D'Amore.It Pa /usr/share/man
344c10c16deSRichard LoweRoot of the standard manual page directory subtree
345*95c635efSGarrett D'Amore.It Pa /usr/share/man/man?/*
346*95c635efSGarrett D'AmoreUnformatted manual entries
347*95c635efSGarrett D'Amore.It Pa /usr/share/man/whatis
348c10c16deSRichard LoweTable of contents and keyword database
349*95c635efSGarrett D'Amore.It Pa man.cf
350c10c16deSRichard LoweDefault search order by section
351*95c635efSGarrett D'Amore.El
352*95c635efSGarrett D'Amore.Sh EXIT STATUS
353*95c635efSGarrett D'Amore.Ex -std man
354*95c635efSGarrett D'Amore.Sh EXAMPLES
355*95c635efSGarrett D'Amore.
356*95c635efSGarrett D'Amore.Ss Example 1: Creating a PostScript Version of a man page
357*95c635efSGarrett D'Amore.
358*95c635efSGarrett D'AmoreThe following example spools the
359*95c635efSGarrett D'Amore.Xr pipe 2
360*95c635efSGarrett D'Amoreman page in PostScript to the default printer:
361*95c635efSGarrett D'Amore.Pp
362*95c635efSGarrett D'Amore.Dl % man -t -s 2 pipe
363*95c635efSGarrett D'Amore.Pp
364*95c635efSGarrett D'AmoreNote that
365*95c635efSGarrett D'Amore.Xr mandoc 1
366*95c635efSGarrett D'Amorecan be used to obtain the PostScript content directly.
367*95c635efSGarrett D'Amore.Ss Example 2: Creating a Text Version of a man page
368*95c635efSGarrett D'AmoreThe following example creates the
369*95c635efSGarrett D'Amore.Xr pipe 2
370*95c635efSGarrett D'Amoreman page in ASCII text:
371*95c635efSGarrett D'Amore.Pp
372*95c635efSGarrett D'Amore.Dl % man pipe.2 | col -x -b > pipe.text
373*95c635efSGarrett D'Amore.Sh CODE SET INDEPENDENCE
374*95c635efSGarrett D'AmoreEnabled.
375*95c635efSGarrett D'Amore.Sh INTERFACE STABILITY
376*95c635efSGarrett D'Amore.Nm Committed .
377*95c635efSGarrett D'Amore.Sh SEE ALSO
378*95c635efSGarrett D'Amore.Xr apropos 1 ,
379*95c635efSGarrett D'Amore.Xr cat 1 ,
380*95c635efSGarrett D'Amore.Xr col 1 ,
381*95c635efSGarrett D'Amore.Xr mandoc 1 ,
382*95c635efSGarrett D'Amore.Xr more 1 ,
383*95c635efSGarrett D'Amore.Xr whatis 1 ,
384*95c635efSGarrett D'Amore.Xr environ 5 ,
385*95c635efSGarrett D'Amore.Xr man 5 ,
386*95c635efSGarrett D'Amore.Xr mdoc 5
387*95c635efSGarrett D'Amore.Sh NOTES
388*95c635efSGarrett D'AmoreThe
389*95c635efSGarrett D'Amore.Fl f
390*95c635efSGarrett D'Amoreand
391*95c635efSGarrett D'Amore.Fl k
392*95c635efSGarrett D'Amoreoptions use the
393*95c635efSGarrett D'Amore.Nm whatis
394*95c635efSGarrett D'Amoredatabase, which is
395*95c635efSGarrett D'Amorecreated with the
396*95c635efSGarrett D'Amore.Fl w
397*95c635efSGarrett D'Amoreoption.
398*95c635efSGarrett D'Amore.Sh BUGS
399c10c16deSRichard LoweThe manual is supposed to be reproducible either on a phototypesetter or on an
400*95c635efSGarrett D'AmoreASCII terminal. However, on a terminal some information (indicated by
401c10c16deSRichard Lowefont changes, for instance) is lost.
402