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:
parent
a28cbb6f9d
commit
e66f44d816
1 changed files with 20 additions and 0 deletions
20
pages.zh/common/seq.md
Normal file
20
pages.zh/common/seq.md
Normal 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`
|
Loading…
Add table
Reference in a new issue