I’m trying to harden up my blog installs and needed to generate some random passwords. Apparently you can generate these from the Terminal, OSX’s command line interface.
Read more at Wobito: Free Random Password Generator for Mac
His code is:
> openssl rand -base64 6
This generates a 6 character string. I wanted something a bit more secure, so I upped it to 12 characters by typing the following:
> openssl rand -base64 12
Enjoy!
Tags: command line, terminal

