http://qs321.pair.com?node_id=619569


in reply to Find files and generate HTML list

To be really clever: (unless you have more concrete requirements about your html file) *untested*

use strict; my $fh; my $file_name = "/path/to/resultfile.txt"; open($fh, '<', $file_name) or die ("couldn't open $filename"); my $fh2; my $html_file = "/path/to/htmlfile.html"; open($fh2, '>', $html_file) or die ("couldn't open $html_file"); print $fh2 "<html><head><title>Results</title></head><body>"; while (<$fh>) { print $fh2 "<p>$_</p>"; } print $fh2 "</body></html>"; close $fh; close $fh2;

How can you feel when you're made of steel? I am made of steel. I am the Robot Tourist.
Robot Tourist, by Ten Benson