RSS feed does not seem to work. I have tried to download using wget "http://use.perl.org/journal.pl?op=rss&uid=121"
but it returns a normal HTML page, not the RSS feed. Is anybody using it?
The reason is because the url contains special characters, which indeed are ampersand. So whenever you've got `& in the url, just espace them using \.
You can try it different ways:
1 wget 'http://use.perl.org/journal.pl?op=rss&uid=121'
2 wget http://use.perl.org/journal.pl?op=rss [perl.org]\&uid=121
3 or even wget http://use.perl.org/journal.pl?op=rss&uid=121\""
Whichever works for you.
Cheers and happy wget
Camille
wget and RSS (Score:2)
FAQ is Wrong (Score:2)
Re:FAQ is Wrong (Score:1)
Re:FAQ is Wrong (Score:1)
Re:FAQ is Wrong (Score:1)
Re: (Score:1)