add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/shuf.md Normal file
View File

@@ -0,0 +1,20 @@
# shuf
> 生成随机排列。
> 更多信息: <https://www.gnu.org/software/coreutils/shuf>。
- 随机化文件中行的顺序并输出结果:
`shuf {{path/to/file}}`
- 仅输出结果的前5个条目
`shuf --head-count=5 {{path/to/file}}`
- 将输出写入另一个文件:
`shuf {{path/to/input_file}} --output={{path/to/output_file}}`
- 在1-10包含范围内生成3个随机数
`shuf --head-count=3 --input-range=1-10 --repeat`