Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,19 +1,19 @@
# shuf
> 生成随机排列.
> 生成随机排列
- 随机化文件中的行顺序并输出结果:
- 随机化文件中的行顺序并输出结果
`shuf {{文件名}}`
- 只输出结果的前 5 条:
- 只输出结果的前 5 条
`shuf -n {{5}} {{文件名}}`
- 将结果输出写入另一个文件:
- 将结果输出写入另一个文件
`shuf {{文件名}} -o {{输出_文件名}}`
- 生成范围 (1-10) 内的随机数:
- 生成范围1-10内的随机数
`shuf -i {{1-10}}`