1 .\" $Id: mdoc.7,v 1.176 2011/01/22 14:05:33 schwarze Exp $
3 .\" Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
6 .\" Permission to use, copy, modify, and distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 .Dd $Mdocdate: January 22 2011 $
23 .Nd mdoc language reference
27 language is used to format
31 This reference document describes its syntax, structure, and
33 The reference implementation is
37 section describes compatibility with other troff \-mdoc implementations.
41 document follows simple rules: lines beginning with the control
44 are parsed for macros.
45 Other lines are interpreted within the scope of
47 .Bd -literal -offset indent
48 \&.Sh Macro lines change control state.
49 Other lines are interpreted within the current state.
53 documents may contain only graphable 7-bit ASCII characters, the space
54 character, and, in certain circumstances, the tab character.
59 If the first character of a line is a space, that line is printed
60 with a leading newline.
64 whether in a macro or free-form text line, is ignored to the end of
66 A macro line with only a control character and comment escape,
69 Macro lines with only a control character and optional whitespace are
71 .Ss Reserved Characters
72 Within a macro line, the following characters are reserved:
74 .Bl -tag -width Ds -offset indent -compact
99 Use of reserved characters is described in
101 For general use in macro lines, these characters can either be escaped
102 with a non-breaking space
104 or, if applicable, an appropriate escape sequence can be used.
105 .Ss Special Characters
106 Special characters may occur in both macro and free-form lines.
107 Sequences begin with the escape character
109 followed by either an open-parenthesis
111 for two-character sequences; an open-bracket
113 for n-character sequences (terminated at a close-bracket
115 or a single one character sequence.
126 Terms may be text-decorated using the
128 escape followed by an indicator: B (bold), I (italic), R (Roman), or P
129 (revert to previous mode):
131 .Dl \efBbold\efR \efIitalic\efP
133 A numerical representation 3, 2, or 1 (bold, italic, and Roman,
134 respectively) may be used instead.
135 A text decoration is valid within
136 the current font scope only: if a macro opens a font scope alongside
137 its own scope, such as
140 in-scope invocations of
142 are only valid within the font scope of the macro.
145 is specified outside of any font scope, such as in unenclosed, free-form
146 text, it will affect the remainder of the document.
152 which encourages semantic annotation.
153 .Ss Predefined Strings
156 also defined a set of package-specific
157 .Dq predefined strings ,
159 .Sx Special Characters ,
160 mark special output characters and strings by way of input codes.
161 Predefined strings are escaped with the slash-asterisk,
179 Whitespace consists of the space character.
180 In free-form lines, whitespace is preserved within a line; unescaped
181 trailing spaces are stripped from input (unless in a literal context).
182 Blank free-form lines, which may include whitespace, are only permitted
183 within literal contexts.
185 In macro lines, whitespace delimits arguments and is discarded.
186 If arguments are quoted, whitespace within the quotes is retained.
188 Macro arguments may be quoted with double-quotes to group
189 space-delimited terms or to retain blocks of whitespace.
190 A quoted argument begins with a double-quote preceded by whitespace.
191 The next double-quote not pairwise adjacent to another double-quote
192 terminates the literal, regardless of surrounding whitespace.
194 Note that any quoted text, even if it would cause a macro invocation
195 when unquoted, is considered literal text.
196 Thus, the following produces
198 .Bd -literal -offset indent
202 In free-form mode, quotes are regarded as opaque text.
204 There are several macros in
206 that require a date argument.
207 The canonical form for dates is the American format:
209 .D1 Cm Month Day , Year
213 value is an optionally zero-padded numeral.
216 value is the full month name.
219 value is the full four-digit year.
221 Reduced form dates are broken-down canonical form dates:
226 Some examples of valid dates follow:
228 .D1 "May, 2009" Pq reduced form
229 .D1 "2009" Pq reduced form
230 .D1 "May 20, 2009" Pq canonical form
232 Many macros support scaled widths for their arguments, such as
233 stipulating a two-inch list indentation with the following:
234 .Bd -literal -offset indent
238 The syntax for scaled widths is
239 .Sq Li [+-]?[0-9]*.[0-9]*[:unit:] ,
240 where a decimal must be preceded or proceeded by at least one digit.
241 Negative numbers, while accepted, are truncated to zero.
242 The following scaling units are accepted:
244 .Bl -tag -width Ds -offset indent -compact
257 default vertical span
269 default horizontal span
274 Using anything other than
280 is necessarily non-portable across output media.
284 When composing a manual, make sure that sentences end at the end of
286 By doing so, front-ends will be able to apply the proper amount of
287 spacing after the end of sentence (unescaped) period, exclamation mark,
288 or question mark followed by zero or more non-sentence closing
295 The proper spacing is also intelligently preserved if a sentence ends at
296 the boundary of a macro line.
300 .Dl \&Fl T \&Ns \&Cm ascii \.
304 document consists of a document prologue followed by one or more
307 The prologue, which consists of the
312 macros in that order, is required for every document.
314 The first section (sections are denoted by
316 must be the NAME section, consisting of at least one
321 Following that, convention dictates specifying at least the
325 sections, although this varies between manual sections.
327 The following is a well-formed skeleton
330 .Bd -literal -offset indent
336 \&.Nd a description goes here
338 \&.\e\*q For sections 2, 3, & 9 only.
339 \&.\e\*q Not used in OpenBSD.
347 utility processes files ...
348 \&.\e\*q .Sh IMPLEMENTATION NOTES
349 \&.\e\*q Not used in OpenBSD.
350 \&.\e\*q .Sh RETURN VALUES
351 \&.\e\*q For sections 2, 3, & 9 only.
352 \&.\e\*q .Sh ENVIRONMENT
353 \&.\e\*q For sections 1, 6, 7, & 8 only.
355 \&.\e\*q .Sh EXIT STATUS
356 \&.\e\*q For sections 1, 6, & 8 only.
357 \&.\e\*q .Sh EXAMPLES
358 \&.\e\*q .Sh DIAGNOSTICS
359 \&.\e\*q For sections 1, 4, 6, 7, & 8 only.
361 \&.\e\*q For sections 2, 3, & 9 only.
362 \&.\e\*q .Sh SEE ALSO
363 \&.\e\*q .Xr foobar 1
364 \&.\e\*q .Sh STANDARDS
369 \&.\e\*q .Sh SECURITY CONSIDERATIONS
370 \&.\e\*q Not used in OpenBSD.
375 document are conventionally ordered as they appear above.
376 Sections should be composed as follows:
377 .Bl -ohang -offset Ds
379 The name(s) and a one line description of the documented material.
380 The syntax for this as follows:
381 .Bd -literal -offset indent
385 \&.Nd a one line description
390 macro(s) must precede the
399 The name of the library containing the documented material, which is
400 assumed to be a function in a section 2, 3, or 9 manual.
401 The syntax for this is as follows:
402 .Bd -literal -offset indent
409 Documents the utility invocation syntax, function call syntax, or device
412 For the first, utilities (sections 1, 6, and 8), this is
413 generally structured as follows:
414 .Bd -literal -offset indent
425 For the second, function calls (sections 2, 3, 9):
426 .Bd -literal -offset indent
428 \&.Vt extern const char *global;
430 \&.Fn foo "const char *src"
432 \&.Fn bar "const char *src"
435 And for the third, configurations (section 4):
436 .Bd -literal -offset indent
437 \&.Cd \*qit* at isa? port 0x2e\*q
438 \&.Cd \*qit* at isa? port 0x4e\*q
441 Manuals not in these sections generally don't need a
444 Some macros are displayed differently in the
446 section, particularly
456 All of these macros are output on their own line.
457 If two such dissimilar macros are pairwise invoked (except for
463 they are separated by a vertical space, unless in the case of
468 which are always separated by vertical space.
470 When text and macros following an
472 macro starting an input line span multiple output lines,
473 all output lines but the first will be indented to align
474 with the text immediately following the
476 macro, up to the next
481 macro or the end of an enclosing block, whichever comes first.
483 This expands upon the brief, one line description in
485 It usually contains a breakdown of the options (if documenting a
487 .Bd -literal -offset indent
488 The arguments are as follows:
489 \&.Bl \-tag \-width Ds
491 Print verbose information.
495 Manuals not documenting a command won't include the above fragment.
496 .It Em IMPLEMENTATION NOTES
497 Implementation-specific notes should be kept here.
498 This is useful when implementing standard functions that may have side
499 effects or notable algorithmic implications.
501 This section documents the
502 return values of functions in sections 2, 3, and 9.
507 Lists the environment variables used by the utility,
508 and explains the syntax and semantics of their values.
511 manual provides examples of typical content and formatting.
516 Documents files used.
517 It's helpful to document both the file name and a short description of how
518 the file is used (created, modified, etc.).
523 This section documents the
524 command exit status for section 1, 6, and 8 utilities.
525 Historically, this information was described in
527 a practise that is now discouraged.
533 This often contains snippets of well-formed, well-tested invocations.
534 Make sure that examples work properly!
536 Documents error conditions.
537 This is most useful in section 4 manuals.
538 Historically, this section was used in place of
540 for manuals in sections 1, 6, and 8; however, this practise is
547 Documents error handling in sections 2, 3, and 9.
552 References other manuals with related topics.
553 This section should exist for most manuals.
554 Cross-references should conventionally be ordered first by section, then
560 References any standards implemented or used.
561 If not adhering to any standards, the
563 section should be used instead.
568 A brief history of the subject, including where support first appeared.
570 Credits to the person or persons who wrote the code and/or documentation.
571 Authors should generally be noted by both name and email address.
576 Common misuses and misunderstandings should be explained
579 Known bugs, limitations, and work-arounds should be described
581 .It Em SECURITY CONSIDERATIONS
582 Documents any security precautions that operators should consider.
585 Macros are one to three three characters in length and begin with a
588 at the beginning of the line.
589 An arbitrary amount of whitespace may sit between the control character
591 Thus, the following are equivalent:
592 .Bd -literal -offset indent
597 The syntax of a macro depends on its classification.
600 refers to macro arguments, which may be followed by zero or more
604 opens the scope of a macro; and if specified,
610 column indicates that the macro may also be called by passing its name
611 as an argument to another macro.
612 If a macro is not callable but its name appears as an argument
613 to another macro, it is interpreted as opaque text.
621 column indicates whether the macro may call other macros by receiving
622 their names as arguments.
623 If a macro is not parsed but the name of another macro appears
624 as an argument, it is interpreted as opaque text.
628 column, if applicable, describes closure rules.
629 .Ss Block full-explicit
630 Multi-line scope closed by an explicit closing macro.
631 All macros contains bodies; only
634 .Bd -literal -offset indent
635 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
640 .Bl -column -compact -offset indent "MacroX" "CallableX" "ParsedX" "closed by XXX"
641 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
642 .It Sx \&Bd Ta \&No Ta \&No Ta closed by Sx \&Ed
643 .It Sx \&Bf Ta \&No Ta \&No Ta closed by Sx \&Ef
644 .It Sx \&Bk Ta \&No Ta \&No Ta closed by Sx \&Ek
645 .It Sx \&Bl Ta \&No Ta \&No Ta closed by Sx \&El
646 .It Sx \&Ed Ta \&No Ta \&No Ta opened by Sx \&Bd
647 .It Sx \&Ef Ta \&No Ta \&No Ta opened by Sx \&Bf
648 .It Sx \&Ek Ta \&No Ta \&No Ta opened by Sx \&Bk
649 .It Sx \&El Ta \&No Ta \&No Ta opened by Sx \&Bl
651 .Ss Block full-implicit
652 Multi-line scope closed by end-of-file or implicitly by another macro.
653 All macros have bodies; some
661 don't have heads; only one
668 .Bd -literal -offset indent
669 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead... \(lBTa head...\(rB\(rB
673 .Bl -column -compact -offset indent "MacroX" "CallableX" "ParsedX" "closed by XXXXXXXXXXX"
674 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
675 .It Sx \&It Ta \&No Ta Yes Ta closed by Sx \&It , Sx \&El
676 .It Sx \&Nd Ta \&No Ta \&No Ta closed by Sx \&Sh
677 .It Sx \&Nm Ta \&No Ta Yes Ta closed by Sx \&Nm , Sx \&Sh , Sx \&Ss
678 .It Sx \&Sh Ta \&No Ta \&No Ta closed by Sx \&Sh
679 .It Sx \&Ss Ta \&No Ta \&No Ta closed by Sx \&Sh , Sx \&Ss
685 .Sx Block full-implicit
686 macro only when invoked as the first macro
689 section line, else it is
691 .Ss Block partial-explicit
692 Like block full-explicit, but also with single-line scope.
693 Each has at least a body and, in limited circumstances, a head
700 .Bd -literal -offset indent
701 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
703 \&.Yc \(lBtail...\(rB
705 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB \
706 \(lBbody...\(rB \&Yc \(lBtail...\(rB
709 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXXX" -compact -offset indent
710 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
711 .It Sx \&Ac Ta Yes Ta Yes Ta opened by Sx \&Ao
712 .It Sx \&Ao Ta Yes Ta Yes Ta closed by Sx \&Ac
713 .It Sx \&Bc Ta Yes Ta Yes Ta closed by Sx \&Bo
714 .It Sx \&Bo Ta Yes Ta Yes Ta opened by Sx \&Bc
715 .It Sx \&Brc Ta Yes Ta Yes Ta opened by Sx \&Bro
716 .It Sx \&Bro Ta Yes Ta Yes Ta closed by Sx \&Brc
717 .It Sx \&Dc Ta Yes Ta Yes Ta opened by Sx \&Do
718 .It Sx \&Do Ta Yes Ta Yes Ta closed by Sx \&Dc
719 .It Sx \&Ec Ta Yes Ta Yes Ta opened by Sx \&Eo
720 .It Sx \&Eo Ta Yes Ta Yes Ta closed by Sx \&Ec
721 .It Sx \&Fc Ta Yes Ta Yes Ta opened by Sx \&Fo
722 .It Sx \&Fo Ta \&No Ta \&No Ta closed by Sx \&Fc
723 .It Sx \&Oc Ta Yes Ta Yes Ta closed by Sx \&Oo
724 .It Sx \&Oo Ta Yes Ta Yes Ta opened by Sx \&Oc
725 .It Sx \&Pc Ta Yes Ta Yes Ta closed by Sx \&Po
726 .It Sx \&Po Ta Yes Ta Yes Ta opened by Sx \&Pc
727 .It Sx \&Qc Ta Yes Ta Yes Ta opened by Sx \&Oo
728 .It Sx \&Qo Ta Yes Ta Yes Ta closed by Sx \&Oc
729 .It Sx \&Re Ta \&No Ta \&No Ta opened by Sx \&Rs
730 .It Sx \&Rs Ta \&No Ta \&No Ta closed by Sx \&Re
731 .It Sx \&Sc Ta Yes Ta Yes Ta opened by Sx \&So
732 .It Sx \&So Ta Yes Ta Yes Ta closed by Sx \&Sc
733 .It Sx \&Xc Ta Yes Ta Yes Ta opened by Sx \&Xo
734 .It Sx \&Xo Ta Yes Ta Yes Ta closed by Sx \&Xc
736 .Ss Block partial-implicit
737 Like block full-implicit, but with single-line scope closed by
738 .Sx Reserved Characters
740 .Bd -literal -offset indent
741 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBbody...\(rB \(lBres...\(rB
744 .Bl -column "MacroX" "CallableX" "ParsedX" -compact -offset indent
745 .It Em Macro Ta Em Callable Ta Em Parsed
746 .It Sx \&Aq Ta Yes Ta Yes
747 .It Sx \&Bq Ta Yes Ta Yes
748 .It Sx \&Brq Ta Yes Ta Yes
749 .It Sx \&D1 Ta \&No Ta \&Yes
750 .It Sx \&Dl Ta \&No Ta Yes
751 .It Sx \&Dq Ta Yes Ta Yes
752 .It Sx \&Op Ta Yes Ta Yes
753 .It Sx \&Pq Ta Yes Ta Yes
754 .It Sx \&Ql Ta Yes Ta Yes
755 .It Sx \&Qq Ta Yes Ta Yes
756 .It Sx \&Sq Ta Yes Ta Yes
757 .It Sx \&Vt Ta Yes Ta Yes
763 .Sx Block partial-implicit
764 only when invoked as the first macro
767 section line, else it is
771 .Sx Reserved Characters ,
772 end of line, fixed argument lengths, and/or subsequent macros.
773 In-line macros have only text children.
774 If a number (or inequality) of arguments is
776 then the macro accepts an arbitrary number of arguments.
777 .Bd -literal -offset indent
778 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB \(lBres...\(rB
780 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB Yc...
782 \&.Yo \(lB\-arg \(lBval...\(rB\(rB arg0 arg1 argN
785 .Bl -column "MacroX" "CallableX" "ParsedX" "Arguments" -compact -offset indent
786 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Arguments
787 .It Sx \&%A Ta \&No Ta \&No Ta >0
788 .It Sx \&%B Ta \&No Ta \&No Ta >0
789 .It Sx \&%C Ta \&No Ta \&No Ta >0
790 .It Sx \&%D Ta \&No Ta \&No Ta >0
791 .It Sx \&%I Ta \&No Ta \&No Ta >0
792 .It Sx \&%J Ta \&No Ta \&No Ta >0
793 .It Sx \&%N Ta \&No Ta \&No Ta >0
794 .It Sx \&%O Ta \&No Ta \&No Ta >0
795 .It Sx \&%P Ta \&No Ta \&No Ta >0
796 .It Sx \&%Q Ta \&No Ta \&No Ta >0
797 .It Sx \&%R Ta \&No Ta \&No Ta >0
798 .It Sx \&%T Ta \&No Ta \&No Ta >0
799 .It Sx \&%U Ta \&No Ta \&No Ta >0
800 .It Sx \&%V Ta \&No Ta \&No Ta >0
801 .It Sx \&Ad Ta Yes Ta Yes Ta >0
802 .It Sx \&An Ta Yes Ta Yes Ta >0
803 .It Sx \&Ap Ta Yes Ta Yes Ta 0
804 .It Sx \&Ar Ta Yes Ta Yes Ta n
805 .It Sx \&At Ta Yes Ta Yes Ta 1
806 .It Sx \&Bsx Ta Yes Ta Yes Ta n
807 .It Sx \&Bt Ta \&No Ta \&No Ta 0
808 .It Sx \&Bx Ta Yes Ta Yes Ta n
809 .It Sx \&Cd Ta Yes Ta Yes Ta >0
810 .It Sx \&Cm Ta Yes Ta Yes Ta >0
811 .It Sx \&Db Ta \&No Ta \&No Ta 1
812 .It Sx \&Dd Ta \&No Ta \&No Ta n
813 .It Sx \&Dt Ta \&No Ta \&No Ta n
814 .It Sx \&Dv Ta Yes Ta Yes Ta >0
815 .It Sx \&Dx Ta Yes Ta Yes Ta n
816 .It Sx \&Em Ta Yes Ta Yes Ta >0
817 .It Sx \&En Ta \&No Ta \&No Ta 0
818 .It Sx \&Er Ta Yes Ta Yes Ta >0
819 .It Sx \&Es Ta \&No Ta \&No Ta 0
820 .It Sx \&Ev Ta Yes Ta Yes Ta >0
821 .It Sx \&Ex Ta \&No Ta \&No Ta n
822 .It Sx \&Fa Ta Yes Ta Yes Ta >0
823 .It Sx \&Fd Ta \&No Ta \&No Ta >0
824 .It Sx \&Fl Ta Yes Ta Yes Ta n
825 .It Sx \&Fn Ta Yes Ta Yes Ta >0
826 .It Sx \&Fr Ta \&No Ta \&No Ta n
827 .It Sx \&Ft Ta Yes Ta Yes Ta >0
828 .It Sx \&Fx Ta Yes Ta Yes Ta n
829 .It Sx \&Hf Ta \&No Ta \&No Ta n
830 .It Sx \&Ic Ta Yes Ta Yes Ta >0
831 .It Sx \&In Ta \&No Ta \&No Ta n
832 .It Sx \&Lb Ta \&No Ta \&No Ta 1
833 .It Sx \&Li Ta Yes Ta Yes Ta >0
834 .It Sx \&Lk Ta Yes Ta Yes Ta >0
835 .It Sx \&Lp Ta \&No Ta \&No Ta 0
836 .It Sx \&Ms Ta Yes Ta Yes Ta >0
837 .It Sx \&Mt Ta Yes Ta Yes Ta >0
838 .It Sx \&Nm Ta Yes Ta Yes Ta n
839 .It Sx \&No Ta Yes Ta Yes Ta 0
840 .It Sx \&Ns Ta Yes Ta Yes Ta 0
841 .It Sx \&Nx Ta Yes Ta Yes Ta n
842 .It Sx \&Os Ta \&No Ta \&No Ta n
843 .It Sx \&Ot Ta \&No Ta \&No Ta n
844 .It Sx \&Ox Ta Yes Ta Yes Ta n
845 .It Sx \&Pa Ta Yes Ta Yes Ta n
846 .It Sx \&Pf Ta Yes Ta Yes Ta 1
847 .It Sx \&Pp Ta \&No Ta \&No Ta 0
848 .It Sx \&Rv Ta \&No Ta \&No Ta n
849 .It Sx \&Sm Ta \&No Ta \&No Ta 1
850 .It Sx \&St Ta \&No Ta Yes Ta 1
851 .It Sx \&Sx Ta Yes Ta Yes Ta >0
852 .It Sx \&Sy Ta Yes Ta Yes Ta >0
853 .It Sx \&Tn Ta Yes Ta Yes Ta >0
854 .It Sx \&Ud Ta \&No Ta \&No Ta 0
855 .It Sx \&Ux Ta Yes Ta Yes Ta n
856 .It Sx \&Va Ta Yes Ta Yes Ta n
857 .It Sx \&Vt Ta Yes Ta Yes Ta >0
858 .It Sx \&Xr Ta Yes Ta Yes Ta >0
859 .It Sx \&br Ta \&No Ta \&No Ta 0
860 .It Sx \&sp Ta \&No Ta \&No Ta 1
863 This section is a canonical reference of all macros, arranged
865 For the scoping of individual macros, see
871 Multiple authors should each be accorded their own
874 Author names should be ordered with full or abbreviated forename(s)
875 first, then full surname.
880 This macro may also be used in a non-bibliographic context when
881 referring to book titles.
883 Publication city or location of an
887 Publication date of an
890 This should follow the reduced or canonical form syntax described in
893 Publisher or issuer name of an
901 Issue number (usually for journals) of an
905 Optional information of an
909 Book or journal page number of an
913 Institutional author (school, government, etc.) of an
916 Multiple institutional authors should each be accorded their own
920 Technical report name of an
927 This macro may also be used in a non-bibliographical context when
928 referring to article titles.
930 URI of reference document.
939 Does not have any tail arguments.
942 Do not use this for postal addresses.
949 Requires either the name of an author or one of the following arguments:
951 .Bl -tag -width "-nosplitX" -offset indent -compact
953 Start a new output line before each subsequent invocation of
962 The effect of selecting either of the
964 modes ends at the beginning of the
969 section, the default is
971 for the first author listing and
973 for all other author listings.
977 .Dl \&.An Kristaps Dzonsons \&Aq kristaps@bsd.lv
979 Begin a block enclosed by angle brackets.
980 Does not have any head arguments.
983 .Dl \&.Fl -key= \&Ns \&Ao \&Ar val \&Ac
988 Inserts an apostrophe without any surrounding whitespace.
989 This is generally used as a grammatical device when referring to the verb
993 .Dl \&.Fn execve \&Ap d
995 Encloses its arguments in angle brackets.
998 .Dl \&.Fl -key= \&Ns \&Aq \&Ar val
1001 this macro is often abused for rendering URIs, which should instead use
1005 or to note pre-processor
1007 statements, which should use
1014 If an argument is not provided, the string
1016 is used as a default.
1019 .Dl \&.Fl o \&Ns \&Ar file1
1021 .Dl \&.Ar arg1 , arg2 .
1023 Formats an AT&T version.
1024 Accepts one optional argument:
1026 .Bl -tag -width "v[1-7] | 32vX" -offset indent -compact
1035 Note that these arguments do not begin with a hyphen.
1054 Does not have any tail arguments.
1056 Begin a display block.
1057 Its syntax is as follows:
1058 .Bd -ragged -offset indent
1061 .Op Fl offset Ar width
1065 Display blocks are used to select a different indentation and
1066 justification than the one used by the surrounding text.
1067 They may contain both macro lines and free-form text lines.
1068 By default, a display block is preceded by a vertical space.
1072 must be one of the following:
1073 .Bl -tag -width 13n -offset indent
1075 Centre-justify each line.
1076 Using this display type is not recommended; many
1078 implementations render it poorly.
1080 Left- and right-justify the block.
1082 Do not justify the block at all.
1083 Preserve white space as it appears in the input.
1085 Only left-justify the block.
1093 must be provided first.
1094 Additional arguments may follow:
1095 .Bl -tag -width 13n -offset indent
1096 .It Fl offset Ar width
1097 Indent the display by the
1099 which may be one of the following:
1102 One of the pre-defined strings
1104 the width of standard indentation;
1109 which has no effect;
1111 which justifies to the right margin; or
1113 which aligns around an imagined centre axis.
1115 A macro invocation, which selects a predefined width
1116 associated with that macro.
1117 The most popular is the imaginary macro
1122 A width using the syntax described in
1123 .Sx Scaling Widths .
1125 An arbitrary string, which indents by the length of this string.
1128 When the argument is missing,
1132 Do not assert vertical space before the display.
1136 .Bd -literal -offset indent
1137 \&.Bd \-literal \-offset indent \-compact
1147 Change the font mode for a scoped block of text.
1148 Its syntax is as follows:
1149 .Bd -ragged -offset indent
1152 .Fl emphasis | literal | symbolic |
1153 .Cm \&Em | \&Li | \&Sy
1161 argument are equivalent, as are
1169 Without an argument, this macro does nothing.
1170 The font mode continues until broken by a new font mode in a nested
1182 Keep the output generated from each macro input line together
1183 on one single output line.
1184 Line breaks in free-form text lines are unaffected.
1185 The syntax is as follows:
1187 .D1 Pf \. Sx \&Bk Fl words
1191 argument is required; additional arguments are ignored.
1193 The following example will not break within each
1196 .Bd -literal -offset indent
1199 \&.Op Fl o Ar output
1203 Be careful in using over-long lines within a keep block!
1204 Doing so will clobber the right margin.
1207 Lists consist of items specified using the
1209 macro, containing a head or a body or both.
1210 The list syntax is as follows:
1211 .Bd -ragged -offset indent
1215 .Op Fl offset Ar val
1222 is mandatory and must be specified first.
1229 or use the length of the given string.
1232 is a global indentation for the whole list, affecting both item heads
1234 For those list types supporting it, the
1236 argument requests an additional indentation of item bodies,
1241 argument is specified, list entries are separated by vertical space.
1243 A list must specify one of the following list types:
1244 .Bl -tag -width 12n -offset indent
1246 No item heads can be specified, but a bullet will be printed at the head
1248 Item bodies start on the same output line as the bullet
1249 and are indented according to the
1256 argument has no effect; instead, each argument specifies the width
1257 of one column, using either the
1259 syntax or the string length of the argument.
1260 If the first line of the body of a
1266 contexts spanning one input line each are implied until an
1268 macro line is encountered, at which point items start being interpreted as
1275 except that dashes are used in place of bullets.
1279 except that item heads are not parsed for macro invocations.
1280 .\" but with additional formatting to the head.
1285 except that cardinal numbers are used in place of bullets,
1290 except that the first lines of item bodies are not indented, but follow
1291 the item heads like in
1298 Item bodies follow items heads on the same line, using normal inter-word
1300 Bodies are not indented, and the
1302 argument is ignored.
1304 No item heads can be specified, and none are printed.
1305 Bodies are not indented, and the
1307 argument is ignored.
1309 Item bodies start on the line following item heads and are not indented.
1312 argument is ignored.
1314 Item bodies are indented according to the
1317 When an item head fits inside the indentation, the item body follows
1318 this head on the same output line.
1319 Otherwise, the body starts on the output line following the head.
1327 Begin a block enclosed by square brackets.
1328 Does not have any head arguments.
1331 .Bd -literal -offset indent -compact
1339 Encloses its arguments in square brackets.
1342 .Dl \&.Bq 1 , \&Dv BUFSIZ
1345 this macro is sometimes abused to emulate optional arguments for
1346 commands; the correct macros to use for this purpose are
1358 Does not have any tail arguments.
1360 Begin a block enclosed by curly braces.
1361 Does not have any head arguments.
1364 .Bd -literal -offset indent -compact
1372 Encloses its arguments in curly braces.
1375 .Dl \&.Brq 1 , ... , \&Va n
1380 Format the BSD/OS version provided as an argument, or a default value if
1381 no argument is provided.
1398 .Dq is currently in beta test .
1400 Format the BSD version provided as an argument, or a default value if no
1401 argument is provided.
1417 Kernel configuration declaration.
1418 This denotes strings accepted by
1422 .Dl \&.Cd device le0 at scode?
1425 this macro is commonly abused by using quoted literals to retain
1426 whitespace and align consecutive
1429 This practise is discouraged.
1432 Useful when specifying configuration options or keys.
1435 .Dl \&.Cm ControlPath
1436 .Dl \&.Cm ControlMaster
1441 One-line indented display.
1442 This is formatted by the default rules and is useful for simple indented
1444 It is followed by a newline.
1447 .Dl \&.D1 \&Fl abcdefgh
1454 Switch debugging mode.
1455 Its syntax is as follows:
1457 .D1 Pf \. Sx \&Db Cm on | off
1459 This macro is ignored by
1465 Does not have any tail arguments.
1468 This is the mandatory first macro of any
1471 Its syntax is as follows:
1473 .D1 Pf \. Sx \&Dd Op Ar date
1479 which signifies the current manual revision date dictated by
1481 or instead a valid canonical date as specified by
1483 If a date does not conform or is empty, the current date is used.
1486 .Dl \&.Dd $\&Mdocdate$
1487 .Dl \&.Dd $\&Mdocdate: July 21 2007$
1488 .Dl \&.Dd July 21, 2007
1495 One-line intended display.
1496 This is formatted as literal text and is useful for commands and
1498 It is followed by a newline.
1501 .Dl \&.Dl % mandoc mdoc.7 \e(ba less
1508 Begin a block enclosed by double quotes.
1509 Does not have any head arguments.
1512 .Bd -literal -offset indent -compact
1514 April is the cruellest month
1522 Encloses its arguments in
1527 .Bd -literal -offset indent -compact
1528 \&.Dq April is the cruellest month
1539 This is the mandatory second macro of any
1542 Its syntax is as follows:
1543 .Bd -ragged -offset indent
1549 .Op Ar volume | arch
1554 Its arguments are as follows:
1555 .Bl -tag -width Ds -offset Ds
1557 The document's title (name), defaulting to
1560 It should be capitalised.
1571 .Pq Perl libraries ,
1581 .Pq system utilities ,
1583 .Pq kernel functions ,
1585 .Pq X Window System ,
1587 .Pq X Window System ,
1597 It should correspond to the manual's filename suffix and defaults to
1601 This overrides the volume inferred from
1603 This field is optional, and if specified, must be one of
1605 .Pq users' supplementary documents ,
1607 .Pq programmers' supplementary documents ,
1609 .Pq administrators' supplementary documents ,
1611 .Pq system managers' manuals ,
1613 .Pq users' reference manuals ,
1615 .Pq programmers' reference manuals ,
1617 .Pq kernel manuals ,
1628 .Pq contributed manuals .
1630 This specifies a specific relevant architecture.
1633 is not provided, it may be used in its place, else it may be used
1635 It, too, is optional.
1671 .Dl \&.Dt FOO 9 i386
1678 Defined variables such as preprocessor constants.
1682 .Dl \&.Dv STDOUT_FILENO
1687 Format the DragonFly BSD version provided as an argument, or a default
1688 value if no argument is provided.
1704 Close a scope started by
1706 Its syntax is as follows:
1708 .D1 Pf \. Sx \&Ec Op Ar TERM
1712 argument is used as the enclosure tail, for example, specifying \e(rq
1716 End a display context started by
1719 End a font mode context started by
1722 End a keep context started by
1725 End a list context started by
1733 Denotes text that should be emphasised.
1734 Note that this is a presentation term and should not be used for
1735 stylistically decorating technical terms.
1747 This macro is obsolete and not implemented in
1750 An arbitrary enclosure.
1751 Its syntax is as follows:
1753 .D1 Pf \. Sx \&Eo Op Ar TERM
1757 argument is used as the enclosure head, for example, specifying \e(lq
1761 Display error constants.
1770 This macro is obsolete and not implemented.
1772 Environmental variables such as those specified in
1779 Insert a standard sentence regarding exit values.
1780 Its syntax is as follows:
1782 .D1 Pf \. Sx \&Ex Fl std Op Ar utility
1786 is not specified, the document's name set by
1794 Its syntax is as follows:
1795 .Bd -ragged -offset indent
1801 This may be invoked for names with or without the corresponding type.
1802 It is also used to specify the field name of a structure.
1805 macro is used in the
1809 section when documenting multi-line function prototypes.
1810 If invoked with multiple arguments, the arguments are separated by a
1812 Furthermore, if the following macro is another
1814 the last argument will also have a trailing comma.
1817 .Dl \&.Fa \(dqconst char *p\(dq
1818 .Dl \&.Fa \(dqint a\(dq \(dqint b\(dq \(dqint c\(dq
1824 End a function context started by
1827 Historically used to document include files.
1828 This usage has been deprecated in favour of
1830 Do not use this macro.
1833 .Sx MANUAL STRUCTURE
1838 Used when listing arguments to command-line utilities.
1839 Prints a fixed-width hyphen
1841 directly followed by each argument.
1842 If no arguments are provided, a hyphen is printed followed by a space.
1843 If the argument is a macro, a hyphen is prefixed to the subsequent macro
1850 .Dl \&.Op \&Fl o \&Ns \&Ar file
1856 Its syntax is as follows:
1857 .Bd -ragged -offset indent
1861 .Op Oo Cm argtype Oc Cm argname
1864 Function arguments are surrounded in parenthesis and
1865 are delimited by commas.
1866 If no arguments are specified, blank parenthesis are output.
1869 .Dl \&.Fn "int funcname" "int arg0" "int arg1"
1870 .Dl \&.Fn funcname "int arg0"
1871 .Dl \&.Fn funcname arg0
1872 .Bd -literal -offset indent -compact
1877 When referring to a function documented in another manual page, use
1881 .Sx MANUAL STRUCTURE
1885 Begin a function block.
1886 This is a multi-line version of
1888 Its syntax is as follows:
1890 .D1 Pf \. Sx \&Fo Cm funcname
1892 Invocations usually occur in the following context:
1893 .Bd -ragged -offset indent
1894 .Pf \. Sx \&Ft Cm functype
1896 .Pf \. Sx \&Fo Cm funcname
1898 .Pf \. Sx \&Fa Oo Cm argtype Oc Cm argname
1910 .Sx MANUAL STRUCTURE ,
1917 Its syntax is as follows:
1919 .D1 Pf \. Sx \&Ft Cm functype
1923 .Bd -literal -offset indent -compact
1929 .Sx MANUAL STRUCTURE ,
1936 version provided as an argument, or a default value
1937 if no argument is provided.
1953 This macro is obsolete and not implemented.
1955 Designate an internal or interactive command.
1958 but used for instructions rather than values.
1968 is preferred for displaying code; the
1970 macro is used when referring to specific instructions.
1977 section (only if invoked as the line macro), the first argument is
1980 the arguments is enclosed in angle brackets.
1986 .Sx MANUAL STRUCTURE .
1989 The syntax of this macro depends on the list type.
1998 have the following syntax:
2000 .D1 Pf \. Sx \&It Cm args
2009 have the following syntax:
2013 with subsequent lines interpreted within the scope of the
2015 until either a closing
2022 list has the following syntax:
2024 .D1 Pf \. Sx \&It Op Cm args
2026 Subsequent lines are interpreted as with
2029 The line arguments correspond to the list's left-hand side; body
2030 arguments correspond to the list's contents.
2034 list is the most complicated.
2035 Its syntax is as follows:
2037 .D1 Pf \. Sx \&It Op Cm args
2041 are phrases, a mix of macros and text corresponding to a line column,
2042 delimited by tabs or the special
2045 Lines subsequent the
2047 are interpreted within the scope of the last phrase.
2048 Calling the pseudo-macro
2050 will open a new phrase scope (this must occur on a macro line to be
2051 interpreted as a macro).
2052 Note that the tab phrase delimiter may only be used within the
2055 Subsequent this, only the
2057 pseudo-macro may be used to delimit phrases.
2058 Furthermore, note that quoted sections propagate over tab-delimited
2063 .Dl .It \(dqcol1 ; <TAB> col2 ;\(dq \&;
2065 will preserve the semicolon whitespace except for the last.
2071 The syntax is as follows:
2073 .D1 Pf \. Sx \&Lb Cm library
2077 parameter may be a system library, such as
2081 in which case a small library description is printed next to the linker
2082 invocation; or a custom library, in which case the library name is
2084 This is most commonly used in the
2086 section as described in
2087 .Sx MANUAL STRUCTURE .
2093 Denotes text that should be in a literal font mode.
2094 Note that this is a presentation term and should not be used for
2095 stylistically decorating technical terms.
2104 Its syntax is as follows:
2106 .D1 Pf \. Sx \&Lk Cm uri Op Cm name
2109 .Dl \&.Lk http://bsd.lv \*qThe BSD.lv Project\*q
2110 .Dl \&.Lk http://bsd.lv
2118 Display a mathematical symbol.
2119 Its syntax is as follows:
2121 .D1 Pf \. Sx \&Ms Cm symbol
2130 Its syntax is as follows:
2132 .D1 Pf \. Sx \&Mt Cm address
2135 .Dl \&.Mt discuss@manpages.bsd.lv
2137 A one line description of the manual's content.
2138 This may only be invoked in the
2140 section subsequent the
2145 .Dl \&.Sx \&Nd mdoc language reference
2146 .Dl \&.Sx \&Nd format and display UNIX manuals
2150 macro technically accepts child macros and terminates with a subsequent
2153 Do not assume this behaviour: some
2155 database generators are not smart enough to parse more than the line
2156 arguments and will display macros verbatim.
2161 The name of the manual page, or \(em in particular in section 1, 6,
2162 and 8 pages \(em of an additional command or feature documented in
2164 When first invoked, the
2166 macro expects a single argument, the name of the manual page.
2167 Usually, the first invocation happens in the
2169 section of the page.
2170 The specified name will be remembered and used whenever the macro is
2171 called again without arguments later in the page.
2175 .Sx Block full-implicit
2176 semantics when invoked as the first macro on an input line in the
2178 section; otherwise, it uses ordinary
2183 .Bd -literal -offset indent
2192 of section 2, 3 and 9 manual pages, use the
2196 to mark up the name of the manual page.
2200 macro used to terminate prior macro contexts.
2203 .Dl \&.Sx \&Fl ab \&No cd \&Fl ef
2206 Following invocation, text is interpreted as free-form text until a
2207 macro is encountered.
2210 .Dl \&.Fl o \&Ns \&Ar output
2219 version provided as an argument, or a default value if
2220 no argument is provided.
2240 Multi-line version of
2244 .Bd -literal -offset indent -compact
2246 \&.Op Fl flag Ns Ar value
2250 Command-line option.
2251 Used when listing options to command-line utilities.
2252 Prints the argument(s) in brackets.
2255 .Dl \&.Op \&Fl a \&Ar b
2256 .Dl \&.Op \&Ar a | b
2261 Document operating system version.
2262 This is the mandatory third macro of
2266 Its syntax is as follows:
2268 .D1 Pf \. Sx \&Os Op Cm system Op Cm version
2272 parameter specifies the relevant operating system or environment.
2273 Left unspecified, it defaults to the local operating system version.
2274 This is the suggested form.
2278 .Dl \&.Os KTH/CSC/TCS
2289 this macro has been deprecated.
2293 version provided as an argument, or a default value
2294 if no argument is provided.
2311 If an argument is not provided, the string
2313 is used as a default.
2316 .Dl \&.Pa /usr/bin/mandoc
2317 .Dl \&.Pa /usr/share/man/man7/mdoc.7
2322 Close parenthesised context opened by
2327 between its arguments.
2328 Its syntax is as follows:
2330 .D1 Pf \. \&Pf Cm prefix suffix
2334 argument may be a macro.
2337 .Dl \&.Pf \e. \&Sx \&Pf \&Cm prefix suffix
2339 Multi-line version of
2343 This will assert vertical space between prior and subsequent macros
2346 Parenthesised enclosure.
2351 Close quoted context opened by
2354 Format a single-quoted literal.
2360 Multi-line version of
2363 Encloses its arguments in
2378 Does not have any tail arguments.
2380 Begin a bibliographic
2383 Does not have any head arguments.
2384 The block macro may only contain
2400 child macros (at least one must be specified).
2403 .Bd -literal -offset indent -compact
2405 \&.%A J. E. Hopcroft
2407 \&.%B Introduction to Automata Theory, Languages, and Computation
2408 \&.%I Addison-Wesley
2409 \&.%C Reading, Massachusettes
2416 block is used within a SEE ALSO section, a vertical space is asserted
2417 before the rendered output, else the block continues on the current
2420 Inserts text regarding a function call's return value.
2421 This macro must consist of the
2423 argument followed by an optional
2427 is not provided, the document's name as stipulated by the first
2434 Close single-quoted context opened by
2437 Begin a new section.
2438 For a list of conventional manual sections, see
2439 .Sx MANUAL STRUCTURE .
2440 These sections should be used unless it's absolutely necessary that
2441 custom sections be used.
2443 Section names should be unique so that they may be keyed by
2452 Switches the spacing mode for output generated from macros.
2453 Its syntax is as follows:
2455 .D1 Pf \. Sx \&Sm Cm on | off
2457 By default, spacing is
2461 no white space is inserted between macro arguments and between the
2462 output generated from adjacent macros, but free-form text lines
2463 still get normal spacing between words and sentences.
2465 Multi-line version of
2468 Encloses its arguments in
2478 Begin a new sub-section.
2481 there's no convention for sub-sections.
2482 Conventional sections, as described in
2483 .Sx MANUAL STRUCTURE ,
2484 rarely have sub-sections.
2486 Sub-section names should be unique so that they may be keyed by
2495 Replace an abbreviation for a standard with the full form.
2496 The following standards are recognised:
2498 .Bl -tag -width "-p1003.1g-2000X" -compact
2592 Reference a section or sub-section.
2593 The referenced section or sub-section name must be identical to the
2594 enclosed argument, including whitespace.
2597 .Dl \&.Sx MANUAL STRUCTURE
2604 Format enclosed arguments in symbolic
2606 Note that this is a presentation term and should not be used for
2607 stylistically decorating technical terms.
2621 .Dq currently under development .
2623 Format the UNIX name.
2624 Accepts no argument.
2643 .Dl \&.Va const char *bar ;
2646 This is also used for indicating global variables in the
2648 section, in which case a variable name is also specified.
2649 Note that it accepts
2650 .Sx Block partial-implicit
2651 syntax when invoked as the first macro in the
2653 section, else it accepts ordinary
2657 Note that this should not be confused with
2659 which is used for function return types.
2662 .Dl \&.Vt unsigned char
2663 .Dl \&.Vt extern const char * const sys_signame[] \&;
2666 .Sx MANUAL STRUCTURE
2670 Close a scope opened by
2673 Extend the header of an
2675 macro or the body of a partial-implicit block macro
2676 beyond the end of the input line.
2677 This macro originally existed to work around the 9-argument limit
2681 Link to another manual
2682 .Pq Qq cross-reference .
2683 Its syntax is as follows:
2685 .D1 Pf \. Sx \&Xr Cm name section
2691 are the name and section of the linked manual.
2694 is followed by non-punctuation, an
2696 is inserted into the token stream.
2697 This behaviour is for compatibility with
2702 .Dl \&.Xr mandoc 1 \&;
2703 .Dl \&.Xr mandoc 1 \&Ns s behaviour
2706 This macro should not be used; it is implemented for compatibility with
2711 in the event of natural paragraph breaks.
2713 Emits vertical space.
2714 This macro should not be used; it is implemented for compatibility with
2716 Its syntax is as follows:
2718 .D1 Pf \. Sx \&sp Op Cm height
2722 argument must be formatted as described in
2723 .Sx Scaling Widths .
2726 asserts a single vertical space.
2728 This section documents compatibility between mandoc and other other
2729 troff implementations, at this time limited to GNU troff
2733 refers to groff versions before 1.17,
2734 which featured a significant update of the
2738 Heirloom troff, the other significant troff implementation accepting
2739 \-mdoc, is similar to historic groff.
2741 The following problematic behaviour is found in groff:
2742 .ds hist (Historic groff only.)
2757 with unknown arguments produces no output at all.
2759 Newer groff and mandoc print
2764 does not recognize trailing punctuation characters when they immediately
2765 precede tabulator characters, but treats them as normal text and
2766 outputs a space before them.
2768 .Sx \&Bd Fl ragged compact
2769 does not start a new line.
2773 without an argument prints
2775 In mandoc, it resolves to the current date.
2778 does not print a dash for an empty argument.
2782 does not start a new line unless invoked as the line macro in the
2790 children causes inconsistent spacing between arguments.
2791 In mandoc, a single space is always inserted between arguments.
2796 causes inconsistent vertical spacing, depending on whether a prior
2803 for the normalised behaviour in mandoc.
2806 ignores additional arguments and is not treated specially in the
2811 sometimes requires a
2815 In new groff and mandoc, any list may be nested by default and
2817 lists will restart the sequence only for the sub-list.
2820 followed by a reserved character is incorrectly used in some manuals
2821 instead of properly quoting that character, which sometimes works with
2825 only accepts a single link-name argument; the remainder is misformatted.
2828 does not format its arguments when used in the FILES section under
2832 can only be called by other macros, but not at the beginning of a line.
2837 Historic groff only allows up to eight or nine arguments per macro input
2838 line, depending on the exact situation.
2839 Providing more arguments causes garbled output.
2840 The number of arguments on one input line is not limited with mandoc.
2842 Historic groff has many un-callable macros.
2843 Most of these (excluding some block-level macros) are callable
2844 in new groff and mandoc.
2847 (vertical bar) is not fully supported as a delimiter.
2854 .Pq font family face
2856 escapes behave irregularly when specified within line-macro scopes.
2858 Negative scaling units return to prior lines.
2859 Instead, mandoc truncates them to zero.
2862 The following features are unimplemented in mandoc:
2870 .Fl offset Ar center
2872 .Fl offset Ar right .
2873 Groff does not implement centered and flush-right rendering either,
2874 but produces large indentations.
2878 .Pq horizontal position ,
2880 .Pq vertical position ,
2884 .Pq text filling colour ,
2886 .Pq zero-length character ,
2890 .Pq horizontal position marker ,
2892 .Pq text overstrike ,
2896 escape sequences are all discarded in mandoc.
2900 scaling unit is accepted by mandoc, but rendered as the default unit.
2902 In quoted literals, groff allows pairwise double-quotes to produce a
2903 standalone double-quote in formatted output.
2904 This is not supported by mandoc.
2916 language first appeared as a troff macro package in
2918 It was later significantly updated by Werner Lemberg and Ruslan Ermilov
2920 The standalone implementation that is part of the
2922 utility written by Kristaps Dzonsons appeared in
2927 reference was written by
2928 .An Kristaps Dzonsons Aq kristaps@bsd.lv .