This commit is contained in:
Connor Lane Smith
2011-05-29 21:30:44 +01:00
parent 6427386b02
commit 430b453c4d
4 changed files with 125 additions and 6 deletions

44
nl.1 Normal file
View File

@@ -0,0 +1,44 @@
.TH NL 1 sbase\-VERSION
.SH NAME
nl \- number lines
.SH SYNOPSIS
.B nl
.RB [ \-b
.IR mode ]
.RB [ \-i
.IR increment ]
.RB [ \-s
.IR separator ]
.RI [ file ...]
.SH DESCRIPTION
.B nl
reads each file in sequence and writes it to stdout with non-empty lines
numbered. If no file is given, nl reads from stdin.
.SH OPTIONS
.TP
.BI \-b " mode"
defines which lines will be numbered:
.RS
.TP
.B a
all lines.
.TP
.B n
no lines.
.TP
.BI p pattern
only lines which match
.IR pattern ,
a regular expression as defined in
.IR regex (7).
.TP
.B t
only non-empty lines (default).
.RE
.TP
.BI \-i " increment"
defines the increment between numbered lines.
.TP
.BI \-s " separator"
defines the string used to separate line numbers and lines. By default this is
a tab.