Seeqpod mp3 leaching
Enjoy
#!/bin/bash
echo -n "Arist name? "
read artist
mkdir "$artist"
url="http://www.seeqpod.com/api/music/anonSearchPaginationFlash?n=1000&q="$artist
wget -t 1 -T 150 -q -O /dev/stdout "`echo $url`" |sed -e 's#<[location>]*>#\n#g' |awk -F '' '{print $1}' |grep -v playlist |xargs -n1 -i{} wget -P "$artist" "{}"
-drc
January 31st, 2008 at 00:11
bash++