diff options
Diffstat (limited to 'static/v10/man1/seq.1')
| -rw-r--r-- | static/v10/man1/seq.1 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/static/v10/man1/seq.1 b/static/v10/man1/seq.1 new file mode 100644 index 00000000..4f1ae853 --- /dev/null +++ b/static/v10/man1/seq.1 @@ -0,0 +1,46 @@ +.TH SEQ 1 +.CT 1 numbers +.SH NAME +seq \- print sequences of numbers +.SH SYNOPSIS +.B seq +[ +.B -w +] +[ +.BI -f format +] +[ +.I first +[ +.I incr +] +] +.I last +.SH DESCRIPTION +.I Seq +prints a sequence of numbers, one per line, from +.I first +(default 1) to as near +.I last +as possible, in increments of +.I incr +(default 1). +The numbers are interpreted as floating point. +.PP +Normally integer values are printed as decimal integers. +The options are +.TP +.BI -f format +Use the +.IR printf (3)-style +.I format +for printing each (floating point) number. +The default is +.LR %g . +.TP +.B -w +Equalize the widths of all numbers by padding with +leading zeros as necessary. +Not effective with option +.BR -f . |
