tldr/pages.zh/osx/shuf.md

21 lines
423 B
Markdown
Raw Normal View History

2019-03-15 03:43:55 +00:00
# shuf
> 生成随机排列。
> 更多信息:<https://keith.github.io/xcode-man-pages/shuf.1.html>.
2019-03-15 03:43:55 +00:00
- 随机化文件中的行顺序并输出结果:
2019-03-15 03:43:55 +00:00
`shuf {{文件名}}`
- 只输出结果的前 5 条:
2019-03-15 03:43:55 +00:00
`shuf --head-count={{5}} {{文件名}}`
2019-03-15 03:43:55 +00:00
- 将结果输出写入另一个文件:
2019-03-15 03:43:55 +00:00
`shuf {{文件名}} --output={{输出_文件名}}`
2019-03-15 03:43:55 +00:00
- 生成范围1-10内的随机数
2019-03-15 03:43:55 +00:00
`shuf --input-range={{1-10}}`