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. |
||||
|
|
|
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. ( |
||||
|
|
|
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. |
||||||||
|