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

* shuf: add Dutch translation and align pages * Update shuf.md Co-authored-by: Jack Lin <blueskyson1401@gmail.com> * Update shuf.md Co-authored-by: Jack Lin <blueskyson1401@gmail.com> --------- Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
20 lines
444 B
Markdown
20 lines
444 B
Markdown
# shuf
|
|
|
|
> 生成随机排列。
|
|
> 更多信息:<https://keith.github.io/xcode-man-pages/shuf.1.html>.
|
|
|
|
- 随机化文件中的行顺序并输出结果:
|
|
|
|
`shuf {{文件名}}`
|
|
|
|
- 只输出结果的前 5 条:
|
|
|
|
`shuf --head-count=5 {{路径/到/文件}}`
|
|
|
|
- 将结果输出写入另一个文件:
|
|
|
|
`shuf {{路径/到/输入文件}} --output={{路径/到/输出文件}}`
|
|
|
|
- 生成范围(1-10)内的随机数:
|
|
|
|
`shuf --input-range=1-10`
|