Hi Linc, I have been using your bashpodder Script for quite a while -- and find it really cool! What I have seen lately, though, is that the script downloads certain files twice if the url to the mp3 file appears twice in the feed. I.e. http://feeds.feedburner.com/accidenthash has enclosure url=... and media:content url=... meaning that wget grabs the mp3 twice, appending ".1" to the second file. I simply changed the line that actually grabs the mp3s to: wget -nc -q -P $datadir "$url" so wget just refuses (-nc == --no-clobber) to download the file again if it already exists. Maybe somebody finds this useful.... By. tobi.