Created
September 3, 2015 13:30
-
-
Save matthias-chlechowitz/a96cceea7a3e9ff8ebd9 to your computer and use it in GitHub Desktop.
generate random string
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
LC_CTYPE=C tr -dc A-Za-z0-9 < /dev/urandom | fold -w ${1:-32} | head -n 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment