Created
March 24, 2019 20:49
-
-
Save antlauzon/598b344946806c6259d58705023b2737 to your computer and use it in GitHub Desktop.
Bit.ly Roulette
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/bash | |
while true; do | |
code=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w ${1:-7} | head -n 1) | |
aria2c "https://bit.ly/$code" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment