Advertisement
Guest User

Untitled

a guest
Jan 12th, 2013
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. threads=10
  3. cat /dev/urandom | tr -dc 'A-Z0-9' | fold -w 6 | \
  4. while read uuid
  5. do
  6.    url=`wget -qO - http://files.mail.ru/$uuid | grep -v "linkcode" | grep -Po "$
  7.   if [ -z "$url" ]; then
  8.      echo "Not found $uuid"
  9.   else
  10.      wget -c $url
  11.   fi
  12. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement