Created
June 3, 2014 20:00
-
-
Save miebach/e4bb82d87d6bd8f300fe to your computer and use it in GitHub Desktop.
Generate random strings in bash
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
< /dev/urandom tr -dc A-Za-z0-9 | head -c8 | |
#or | |
echo $RANDOM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment