您的位置:首页 > 运维架构 > Linux

linux shuf 随机选择器

2017-12-13 16:14 555 查看
有些发布版的linux不带shuf命令,shuf命令包含在coreutils这个包里面。

# shuf --help
Usage: shuf [OPTION]... [FILE]
or:  shuf -e [OPTION]... [ARG]...
or:  shuf -i LO-HI [OPTION]...
Write a random permutation of the input lines to standard output.

Mandatory arguments to long options are mandatory for short options too.
-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     end lines with 0 byte, not newline
--help     display this help and exit
--version  output version information and exit

With no FILE, or when FILE is -, read standard input.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
For complete documentation, run: info coreutils 'shuf invocation'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  linux random