Parse and Compare Text Files

2003-10-24 Thread Mike M
Hi, I'm new to Perl and have what I hope is a simple question: I have a Perl script that parses a log file from our proxy server and reformats it to a more easily readable space-delimited text file. I also have another file that has a categorized list of internet domains, also space-delimited.

Re: Parse and Compare Text Files

2003-10-27 Thread Mike M
print OUT $line; } else { print OUT "$line not found"; } } close FILE2; close OUT; "Wiggins D'Anconia" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Mike M wrote: > > Hi, > > > > I'm new to Perl and have