Search notes:

Shell command: shuf

shuf permutate lines from stdin and write result to stdout.
Choose three random numbers between 1 and 10:
$ for i in {1..10} ; do echo $i ; done | shuf -n 3

See also

Shell commands

Index