1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-18 02:15:46 +02:00
tldr/pages.zh/osx/shuf.md

21 lines
425 B
Markdown
Raw Normal View History

2019-03-15 11:43:55 +08:00
# shuf
> 生成随机排列。
2025-08-07 20:46:32 -07:00
> 更多信息:<https://manpagez.com/man/1/shuf/>.
2019-03-15 11:43:55 +08:00
- 随机化文件中的行顺序并输出结果:
2019-03-15 11:43:55 +08:00
`shuf {{文件名}}`
- 只输出结果的前 5 条:
2019-03-15 11:43:55 +08:00
`shuf --head-count=5 {{路径/到/文件}}`
2019-03-15 11:43:55 +08:00
- 将结果输出写入另一个文件:
2019-03-15 11:43:55 +08:00
`shuf {{路径/到/输入文件}} --output {{路径/到/输出文件}}`
2019-03-15 11:43:55 +08:00
- 生成范围(1-10)内的随机数:
2019-03-15 11:43:55 +08:00
`shuf --input-range=1-10`