sbase/nl.1

101 lines
1.8 KiB
Groff
Raw Normal View History

2015-03-18 12:58:09 -04:00
.Dd March 18, 2015
.Dt NL 1
.Os sbase
2014-12-04 08:49:07 -05:00
.Sh NAME
.Nm nl
.Nd line numbering filter
.Sh SYNOPSIS
.Nm
2015-03-18 12:58:09 -04:00
.Op Fl p
2014-12-04 08:49:07 -05:00
.Op Fl b Ar type
2015-03-18 12:58:09 -04:00
.Op Fl d Ar delim
.Op Fl f Ar type
.Op Fl h Ar type
2014-12-04 08:49:07 -05:00
.Op Fl i Ar incr
2015-03-10 07:49:56 -04:00
.Op Fl l Ar num
2015-02-20 09:12:03 -05:00
.Op Fl n Ar format
2014-12-04 08:49:07 -05:00
.Op Fl s Ar sep
2015-02-20 07:05:54 -05:00
.Op Fl v Ar startnum
2015-02-20 07:15:43 -05:00
.Op Fl w Ar width
2014-12-04 08:49:07 -05:00
.Op Ar file
.Sh DESCRIPTION
.Nm
reads lines from the named
.Ar file
and writes them to stdout with non-empty lines numbered. If no
.Ar file
is given
2014-12-04 08:49:07 -05:00
.Nm
reads from stdin.
.Sh OPTIONS
.Bl -tag -width Ds
2015-03-18 12:58:09 -04:00
.It Fl p
Do not reset number for logical pages
2014-12-04 08:49:07 -05:00
.It Fl b Ar type
2015-03-18 12:58:09 -04:00
Defines which lines will be numbered for body sections:
2014-12-04 08:49:07 -05:00
.Bl -tag -width pstringXX
.It a
All lines.
.It n
No lines.
.It t
Only non-empty lines (default).
.It p Ns Ar expr
Only lines which match
.Ar expr ,
2011-05-29 16:30:44 -04:00
a regular expression as defined in
2015-02-01 14:52:28 -05:00
.Xr regex 7 .
2014-12-04 08:49:07 -05:00
.El
2015-03-18 12:58:09 -04:00
.It Fl d Ar delim
Specify the delimiter (default is "\\:"). If only one character is specified, the second remains ':'.
2015-03-18 12:58:09 -04:00
.It Fl f Ar type
Same as
.Fl b
except for footer sections.
.It Fl h Ar type
Same as
.Fl b
except for header sections.
2014-12-04 08:49:07 -05:00
.It Fl i Ar incr
Defines the increment between numbered lines.
2015-03-10 07:49:56 -04:00
.It Fl l Ar num
Specify the number of adjacent blank lines to be considered as one. Default is 1.
2015-02-20 09:12:03 -05:00
.It Fl n Ar format
Specify the line number output format.
The
.Ar format
can be any of the following:
.Bl -tag -width pstringXX
.It ln
Left justified.
.It rn
Right justified.
.It rz
Right justified with leading zeroes.
.El
.Pp
The default
.Ar format
is rn.
2014-12-04 08:49:07 -05:00
.It Fl s Ar sep
Defines the string used to separate line numbers and lines. By default this is
2011-05-29 16:30:44 -04:00
a tab.
2015-02-20 07:05:54 -05:00
.It Fl v Ar startnum
Start counting from
.Ar startnum
instead of the default 1.
2015-02-20 07:15:43 -05:00
.It Fl w Ar width
The number of characters to be occupied by the line number
will be set to
.Ar width .
The default is 6.
2014-12-04 08:49:07 -05:00
.El
.Sh SEE ALSO
.Xr pr 1
2015-03-18 12:58:09 -04:00
.Sh STANDARDS
The
.Nm
utility is compliant with the
.St -p1003.1-2008
specification.