Created
October 28, 2014 11:33
-
-
Save simonausten/03a56c28750f23f2da79 to your computer and use it in GitHub Desktop.
Bash password generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export LC_CTYPE=C; cat /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c 15 | pbcopy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment