1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

seq: add Chinese translation (#15396)

* seq: add zh translation

* seq: fix dot symbol

* seq: update link

* Update pages.zh/common/seq.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages.zh/common/seq.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages.zh/common/seq.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages.zh/common/seq.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
This commit is contained in:
witt 2025-01-06 13:19:17 +08:00 committed by GitHub
parent a28cbb6f9d
commit e66f44d816
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages.zh/common/seq.md Normal file
View file

@ -0,0 +1,20 @@
# seq
> 打印数字序列到标准输出。
> 更多信息:<https://www.gnu.org/software/coreutils/seq>.
- 从 1 到 10 的序列:
`seq 10`
- 从 5 开始,3 为步长,不超过 20 的序列:
`seq 5 3 20`
- 从 5 开始,3 为步长,不超过 20 的序列,并用空格作为分隔符:
`seq -s " " 5 3 20`
- 从 5 开始,3 为步长,不超过 20 的序列,并格式化为 4 位宽度,不足 4 位,前面补 0:
`seq -f "%04g" 5 3 20`