1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 07:57:55 +01:00

seq: add --format example

This commit is contained in:
Bill Flynn 2018-11-30 13:10:37 -05:00 committed by Muhammad Falak R Wani
parent 5cf150a17d
commit eab3df67ae

View file

@ -13,3 +13,7 @@
- Separate the output with a space instead of a newline: - Separate the output with a space instead of a newline:
`seq -s " " 5 3 20` `seq -s " " 5 3 20`
- Format the output with (4 digit) zero padding:
`seq --format "%04g" 5 3 20`