Skip to content

Instantly share code, notes, and snippets.

@venkatperi
Last active January 17, 2019 03:44
Show Gist options
  • Save venkatperi/67133cc1deac1c5f281880b1798f6326 to your computer and use it in GitHub Desktop.
Save venkatperi/67133cc1deac1c5f281880b1798f6326 to your computer and use it in GitHub Desktop.
Generates base62 passwords/api keys
#!/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