Написал такой скриптец
<?php
$copyright = '/* by Haus*/';
foreach(glob('dir/*.php') as $file) {
echo 'файл '.$file.' скопирайтен =)<br/>';
file_put_contents($file, preg_replace('#^<?php#', "<?php
".$copyright."
", file_get_contents($file)));
}
?>