Created
May 24, 2013 22:42
-
-
Save jonahbron/5646992 to your computer and use it in GitHub Desktop.
Quickly generate a safe password. Allows you to (optionally) pass a length.
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
# Easily generate a safe password. Defaults to 16 characters | |
# | |
# author Jonah Dahlquist | |
# license CC0 | |
genpass() { | |
local l=$1 | |
[ "$l" == "" ] && l=16 | |
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment