A quick tip to easily generate random password from a bash command line.
Add the following lines to your
bashrc
file:1alias genalphanumpasswd='tr -cd '\''[:alnum:]'\'' < /dev/urandom | fold -w30 | head -n1' 2alias genpasswd='tr -cd '\''[:graph:]'\'' < …
Read More