Skip to content

Instantly share code, notes, and snippets.

@antlauzon
Created March 24, 2019 20:49
Show Gist options
  • Save antlauzon/598b344946806c6259d58705023b2737 to your computer and use it in GitHub Desktop.
Save antlauzon/598b344946806c6259d58705023b2737 to your computer and use it in GitHub Desktop.
Bit.ly Roulette
#!/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