vote up 0 vote down star

Hi,

I'd like to parse rss feeds and download podcasts on my ReadyNas which is running 24/7 anyway.

So I'm thinking about having a shell script checking periodically the feeds and spawning wget to download the files.

What is the best way to do the parsing?

Thanks!

flag

Perhaps I have to add: I'm on a very slow line, that's why I'm not running my workstation. – Oli Jan 14 at 17:48

4 Answers

vote up 3 vote down check

Sometimes a simple one liner with shell standard commands can be enough for this:

 wget -q -O- "http://www.rss-specifications.com/rss-podcast.xml" | grep -o '<enclosure url="[^"]*' | grep -o '[^"]*$' | xargs wget -c

Sure this does not work in any case, but it's often good enough.

link|flag
vote up 0 vote down

You can use xsltproc from libxml2 and write a simple xsl stylesheet that parses the rss and outputs a list of links.

link|flag
vote up 2 vote down

Do you have access to awk? Maybe you could use XMLGawk

link|flag
vote up 1 vote down

I read about XMLStartlet here and there

But is there a port to ReadyNas NV+ available?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.