2015-12-29 08:00:40 -05:00
|
|
|
# seq
|
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
> Output a sequence of numbers to stdout.
|
2021-04-01 17:54:26 +02:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/seq>.
|
2015-12-29 08:00:40 -05:00
|
|
|
|
|
|
|
- Sequence from 1 to 10:
|
|
|
|
|
|
|
|
`seq 10`
|
|
|
|
|
|
|
|
- Every 3rd number from 5 to 20:
|
|
|
|
|
|
|
|
`seq 5 3 20`
|
|
|
|
|
|
|
|
- Separate the output with a space instead of a newline:
|
|
|
|
|
|
|
|
`seq -s " " 5 3 20`
|
2018-11-30 13:10:37 -05:00
|
|
|
|
2018-12-03 11:52:57 -05:00
|
|
|
- Format output width to a minimum of 4 digits padding with zeros as necessary:
|
2018-11-30 13:10:37 -05:00
|
|
|
|
2018-12-03 11:52:47 -05:00
|
|
|
`seq -f "%04g" 5 3 20`
|