in reply to Parsing multiple RSS files
The get() function of LWP::Simple does not know how to work with arrays, you need to give it URLs one by one. This is done with a loop. That would look like this:
foreach my $URL (@URL) { ... } [download]