Shuffle lines

seq 5 | shuf

March 12, 2015openiduser184

Explanation

shuf is part of the textutils package of GNU Core Utilities and should be available on most systems.

Related one-liners

Shuffle lines

... | perl -MList::Util -e 'print List::Util::shuffle <>'

October 25, 2014bashoneliners