Created
May 16, 2018 16:49
-
-
Save thiagoeh/c0ea94573f925c49607bdf14856a849e to your computer and use it in GitHub Desktop.
Random password from shell
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
cat /dev/urandom | tr -dc A-Z-a-z-0-9 | head -c${1:-32};echo; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment