Created
April 5, 2012 00:33
-
-
Save joshgachnang/2306856 to your computer and use it in GitHub Desktop.
Bash Generate Random Alphanumeric Password
This file contains 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
# Generates a 16 character password. | |
function password { | |
RET=$(cat /dev/urandom | tr -cd [:alnum:] | head -c ${1:-16}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment