Last active
August 29, 2015 14:24
-
-
Save matthieuprat/4a8e32c5f3bc24ef9c3b to your computer and use it in GitHub Desktop.
Generate an alpha-numeric random token
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
#!/bin/sh | |
until openssl rand -base64 40 | grep -v '+\|/'; do :; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment