Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created September 20, 2012 10:46
Show Gist options
  • Save hubgit/3755174 to your computer and use it in GitHub Desktop.
Save hubgit/3755174 to your computer and use it in GitHub Desktop.
Download all the file enclosures from an RSS feed
<?php
$rss = simplexml_load_file($argv[1]);
foreach ($rss->channel->item as $item) {
exec('wget --continue --directory-prefix="enclosures" ' . escapeshellarg($item->enclosure['url']));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment