2011/12/06

Generate Random Number with /dev/random

Command:
od -An -N2 -i /dev/random

With Shell Script Arithmetic:
echo $((100+(`od -An -N2 -i /dev/random`)%(1000-100+1)))