Go to the first, previous, next, last section, table of contents.


seq: Print numeric sequences

seq prints a sequence of numbers to standard output. Synopses:

seq [option]... [first [step]] last...

seq prints the numbers from first to last by step. By default, first and step are both 1, and each number is printed on its own line. All numbers can be reals, not just integers.

The program accepts the following options. Also see section Common options.

`-f format'
`--format=format'
Print all numbers using format; default `%g'. format must contain exactly one of the standarding float output formats `%e', `%f', or `%g'.
`-s string'
`--separator=string'
Separate numbers with string; default is a newline. The output always terminates with a newline.
`-w'
`--equal-width'
Print all numbers with the same width, by padding with leading zeroes. (To have other kinds of padding, use `--format').


Go to the first, previous, next, last section, table of contents.