Created
September 20, 2012 10:46
-
-
Save hubgit/3755174 to your computer and use it in GitHub Desktop.
Download all the file enclosures from an RSS feed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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