11 Jul
2004
11 Jul
'04
10:47 a.m.
J> #!/bin/sh J> wget http://www.start-ab.com/trax04/remixe-yello-2004.html J> cat remixe-yello-2004.html | perl -n -e'if (m/^.*?(\d+\.mp3).*$/i) J> {print "http://www.music-by.net/04/tracks_remix/"; print $1; print J> "\n";}' > trackfiles J> wget -nc -i trackfiles J> rm trackfiles remixe-yello-2004.html Oops error. That won't work for all the tracks, but this should: #!/bin/sh wget http://www.start-ab.com/trax04/remixe-yello-2004.html cat remixe-yello-2004.html | perl -n -e'if (m/(http:.*?\d+\.mp3)/i) {print $1; print "\n";}' > trackfiles wget -nc -i trackfiles rm -f trackfiles remixe-yello-2004.html -- Justin ICQ 37456745 Jabber jastice@amessage.de