mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-01-02 22:12:50 +03:00
16 lines
212 B
Markdown
16 lines
212 B
Markdown
# seq
|
|
|
|
> Output a sequence of numbers to stdout.
|
|
|
|
- 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`
|