Thursday, December 9, 2010

Generating passwords at the command line

I posted this gem over at Stack Overflow for generating random passwords on the Linux command line.
echo $(</dev/urandom tr -dc A-Za-z0-9 | head -c8)
Enjoy

Kudos to aigark's share

No comments: