sbase/seq.1

37 lines
576 B
Groff
Raw Normal View History

2012-04-11 16:59:33 +00:00
.TH SEQ 1 sbase\-VERSION
.SH NAME
seq \- print a sequence of numbers
.SH SYNOPSIS
.B seq
2012-04-11 16:59:33 +00:00
.RB [ \-w ]
.RB [ \-f
.IR fmt ]
.RB [ \-s
.IR separator ]
.RI [ start
2012-05-10 18:20:16 +00:00
.RI [ step ]]
2013-07-01 17:25:41 +00:00
.IR end
2012-04-11 16:59:33 +00:00
.SH DESCRIPTION
.B seq
will print a sequence of numbers from
2012-05-10 18:20:16 +00:00
.I start
(default 1) to
.IR end ,
in
.IR step
intervals (default 1).
2012-04-11 16:59:33 +00:00
.SH OPTIONS
.TP
.BI \-f " format"
2012-05-10 18:20:16 +00:00
specifies the format used for output lines, as per
.IR printf (3).
2012-04-11 16:59:33 +00:00
.TP
.BI \-s " separator"
specifies the separator to print between output lines
.TP
.BI \-w
tells seq to print out lines in equal width
2013-07-01 17:25:41 +00:00
.SH SEE ALSO
.IR printf (3)