#!/bin/bash
# Fetch URLs from tinyurl.com
# Make sure you have curl and bc installed before you run this.
#
# Joel Franusic 2008 - Public Domain Sofware
MIN=1
MAX=10000
SLEEP_MAX=3
l=(0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z)
for((n=$MIN; n<$MAX; n++)); do
(
Read more... )