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
No comments yet.