1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-12 21:35:25 +02:00
tldr/pages.nl/common/seq.md
Managor a70b923d8f
*: add option placeholders to translations (#15933)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-19 00:36:34 +02:00

20 lines
461 B
Markdown

# 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|--separator]}} " " 5 3 20`
- Formatteer de uitvoerbreedte naar minimaal 4 cijfers, opgevuld met nullen indien nodig:
`seq {{[-f|--format]}} "%04g" 5 3 20`