Tag: random
Get a Random Futurama Quote
July 3, 2009
Useless – but fun – get a random Futurama Quote curl -Is slashdot.org | egrep ‘^X-(F|B)’ | cut -d \-…
Create Random Password
July 2, 2009
Use this command to create a random password < /dev/urandom tr -dc A-Za-z0-9_ | head -c8 Also see…
Linux Command to Generate a Password
October 22, 2008
Linux command to create a random password head -n1 /dev/urandom|md5sum -b|head -c 5
Random Password in PHP
October 20, 2008
A simple way to create a random password in PHP $password = substr(md5(time()), 0, rand(4,8));
Random Noise in Linux
November 13, 2007
Random Noise in Linux – I cannot think of any practical use for this command. You can use it for…
Recent Comments