simple password generator

My own oneliner… a password generator:

tr -cd a-zA-Z0-9 < /dev/urandom | head -c 8

generates the random output and in this example show first 8 signs

example:

$ tr -cd a-zA-Z0-9 < /dev/urandom | head -c 8
GVGlkDw3

Tags:

Monday, June 16th, 2008 Tips, cribs

No comments yet.

Leave a comment