Tyson

Authored Comments

I think this one is way much neater.

alias pass1='echo -e "Password Generator\n";tr -cd [:alnum:] < /dev/urandom | fold -w16 | head -n1'

alias pass2='echo -e "Randomest Password Generator\n";tr -cd [:alnum:][:punct:] < /dev/urandom | fold -w16 | head -n1'