February
9
Password generation in command line
#bash generate random 32 character alphanumeric string (upper and lowercase)
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1
original post on the github.com