Last active
January 17, 2019 03:44
-
-
Save venkatperi/67133cc1deac1c5f281880b1798f6326 to your computer and use it in GitHub Desktop.
Generates base62 passwords/api keys
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
#!/bin/bash | |
SIZE=${1:-20} | |
curl -s https://apikey.now.sh/$SIZE | cut -d, -f1 | cut -d: -f2 | tr -d \" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment