1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:02:09 +02:00
tldr/pages.nl/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

428 B

seq

Toon een reeks getallen naar stdout. Meer informatie: https://www.gnu.org/software/coreutils/manual/html_node/seq-invocation.html.

  • Reeks van 1 tot 10:

seq 10

  • Elk 3e nummer van 5 tot 20:

seq 5 3 20

  • Scheid de uitvoer met een spatie in plaats van een nieuwe regel:

seq -s " " 5 3 20

  • Formatteer de uitvoerbreedte naar minimaal 4 cijfers, opgevuld met nullen indien nodig:

seq -f "%04g" 5 3 20