sbase/seq.1
Michael Forney 22921a859f Fix various lint warnings in manuals
Fix "new sentence, new line" warnings throughout so that formatters
can produce correct spacing between sentences.

join.1
  Remove unnecessary Ns macros. These are not necessary for delimeters,
  which get special treatment.

xinstall.1
  Fix date in manual. The contents were last modified on 2016-12-03,
  so use that instead of the invalid date.

grep.1
  Fix escape sequence for `\<` and `\>`.

ed.1
  Remove spurious `\\n` escape for the null-command.
2020-03-01 15:32:11 -08:00

41 lines
578 B
Groff

.Dd 2015-10-08
.Dt SEQ 1
.Os sbase
.Sh NAME
.Nm seq
.Nd print a sequence of numbers
.Sh SYNOPSIS
.Nm
.Op Fl w
.Op Fl f Ar fmt
.Op Fl s Ar sep
.Op Ar startnum Op Ar step
.Ar endnum
.Sh DESCRIPTION
.Nm
writes a sequence of numbers from
.Ar startnum
(default: 1) to
.Ar endnum
in
.Ar step
intervals (default: 1)
to stdout.
.Sh OPTIONS
.Bl -tag -width Ds
.It Fl f Ar fmt
Use
.Ar fmt
as the output line format according to
.Xr printf 3 .
.It Fl s Ar sep
Print
.Ar sep
between output lines.
The default is "\en".
.It Fl w
Print out lines in equal width.
.El
.Sh SEE ALSO
.Xr printf 3