1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-30 16:55:38 +02:00

linux: shuf

This commit is contained in:
Like-all 2014-09-08 13:27:44 +04:00
parent 786e90e864
commit f4946b78d2

19
pages/linux/shuf.md Normal file
View file

@ -0,0 +1,19 @@
# shuf
> generate random permutations
- randomize strings position in file
`shuf {{filename}}`
- generate random numbers in range
`shuf -i LO-HI`
- take first n results from output
`shuf -n {{n}} {{filename}}`
- write output to another file
`shuf -o {{another_filename}} {{filename}}`