2014-09-08 10:27:44 +01:00
|
|
|
# shuf
|
|
|
|
|
|
|
|
> generate random permutations
|
|
|
|
|
2014-09-10 14:58:31 +01:00
|
|
|
- randomize the order of lines in a file and output the result
|
2014-09-08 10:27:44 +01:00
|
|
|
|
|
|
|
`shuf {{filename}}`
|
|
|
|
|
2014-09-10 14:58:31 +01:00
|
|
|
- only output the first n entries of the result
|
2014-09-08 10:27:44 +01:00
|
|
|
|
|
|
|
`shuf -n {{n}} {{filename}}`
|
|
|
|
|
|
|
|
- write output to another file
|
|
|
|
|
|
|
|
`shuf -o {{another_filename}} {{filename}}`
|
2014-09-10 14:58:31 +01:00
|
|
|
|
|
|
|
- generate random numbers in range
|
|
|
|
|
|
|
|
`shuf -i {{low}}-{{high}}`
|