码迷,mamicode.com
首页 > 系统相关 > 详细

【shell】shuf命令提取文件的随机行

时间:2018-08-21 17:15:23      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:退出   mit   rmi   min   head   文本文件   count   each   ...   

shuf命令可以随机提取一个文本文件的不同行,输出到文件或者标准输出中。

 

shuf

用法: shuf [选项]... [文件]
 或者:  shuf -e [选项]... [参数]...
 或者:  shuf -i LO-HI [选项]...
Write a random permutation of the input lines to standard output.

如果没有指定文件,或者文件为"-",则从标准输入读取。

必选参数对长短选项同时适用。
  -e, --echo                treat each ARG as an input line
  -i, --input-range=LO-HI   treat each number LO through HI as an input line
  -n, --head-count=COUNT    output at most COUNT lines
  -o, --output=FILE         write result to FILE instead of standard output
      --random-source=FILE  get random bytes from FILE
  -r, --repeat              output lines can be repeated
  -z, --zero-terminated     line delimiter is NUL, not newline
      --help        显示此帮助信息并退出
      --version        显示版本信息并退出

 

例如:提取一个input.txt中的随机20行

 

shuf input.txt -n 20 -o output.txt

 

【shell】shuf命令提取文件的随机行

标签:退出   mit   rmi   min   head   文本文件   count   each   ...   

原文地址:https://www.cnblogs.com/muuyouzhi/p/9512294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!