Måste du använda curl?
file_get_contents(); skulle fungera utmärkt för detta.
Lite segare och "sämre" än curl, men avsevärt lättare.
PHP-kod:
<?php
$content = file_get_contents('dinurl.se/fil.txt');
?>
EDIT:
Jag är snäll idag:
PHP-kod:
<?php
set_time_limit(0); // 0 stänger av time-limit:en.
$list = file_get_contents("listan.txt");
$urls = explode("\n",$list);
foreach($urls as $url) {
$artid = substr($url, 36, 6);
$temp = file_get_contents($url);
file_put_contents($artid.'.html', $temp);
unset($temp, $artid);
}