1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:02:07 +02:00
tldr/pages/common/seq.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

418 B

seq

Output a sequence of numbers to stdout. More information: https://www.gnu.org/software/coreutils/manual/html_node/seq-invocation.html.

  • 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

  • Format output width to a minimum of 4 digits padding with zeros as necessary:

seq -f "%04g" 5 3 20