in reply to Re: processing large files
in thread processing large files

I think I am reading the file line by line
here is some code from a test script I am trying to
get to work:
open(IN_FILE, "cat $fileName |" die "Can't cat inputfile: $!\n"; while (<IN_FILE>) { chop; ......some processing code... }


any ideas?

-E