Tag: random

Generate Password

Command to generate a random password… openssl rand -base64 6

Get a Random Futurama Quote

Useless – but fun – get a random Futurama Quote curl -Is slashdot.org | egrep ‘^X-(F|B)’ | cut -d \-…

Create Random Password

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

Linux command to create a random password head -n1 /dev/urandom|md5sum -b|head -c 5

Random Password in PHP

A simple way to create a random password in PHP $password = substr(md5(time()), 0, rand(4,8));

Random Noise in Linux

Random Noise in Linux – I cannot think of any practical use for this command. You can use it for…