Quote:
|
Originally Posted by prodiac
Code:
#!/usr/local/bin/perl
$file_orig = "_somefile.html";
$files = "filename_list.txt
open (FILE, $files);
@allfiles=<FILE>;
close(FILE);
foreach $name (@allfiles) {
chop($name);
system("/bin/cp $file_orig $name");
}
exit;
|
And what if you want to edit the text between the TITLE tags on the html page as well, and in php instead of perl?