Skip to content

Instantly share code, notes, and snippets.

@yiquncode
Created November 22, 2010 13:58
Show Gist options
  • Save yiquncode/710012 to your computer and use it in GitHub Desktop.
Save yiquncode/710012 to your computer and use it in GitHub Desktop.
top100down
#!/bin/sh
for i in `curl $1 |grep mp3 | awk -F\" '{print $2}'|uniq`
do
wget --limit-rate=300k --referer='http://www.top100.cn/download/download.aspx?Productid=kcadnctughhdkcbogy' -U 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12' $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment