How can I randomize the lines in a file using a standard tools on Redhat Linux?
I don't have the "shuf" command, so I am looking for something like a perl or awk one liner that accomplishes the same task.
|
|
And a Perl one-liner you get!
It uses a module, but the module is part of the Perl code distribution. If that's not good enough, you may consider rolling your own. I tried using this with the Consider a shell script:
Untested, but hopefully works. |
|||||
|
|
Um, lets not forget
|
|||||||||||||
|
Read the file, prepend every line with a random number, sort the file on those random prefixes, cut the prefixes afterwards. One-liner which should work in any semi-modern shell. EDIT: incorporated Richard Hansen's remarks. |
|||||||||||||
|
|
"shuf" is the best way "sort -R" is painfully slow. I just tried to sort 5GB file. I gave up after 2.5 hours. Then shuf sorted it in a minute. |
|||||
|
|
Related to Jim's answer: My
With GNU coreutils's sort, Related to Chris's answer:
is a slightly shorter one-liner. ( The reason giving it a simple As a shorter workaround,
will shuffle files in-place. ( |
|||||
|
|
When I install coreutils with homebrew
|
|||
|
|
|
On OSX, grabbing latest from http://ftp.gnu.org/gnu/coreutils/ and something like ./configure make sudo make install ...should give you /usr/local/bin/sort --random-sort without messing up /usr/bin/sort |
|||
|
Or get it from MacPorts:
and/or
|
||||
|
|