Seeqpod mp3 leaching


#!/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" "{}"

Enjoy
-drc

One Response to “Seeqpod mp3 leaching”

  1. Craig Says:

    bash++