in reply to Iterating through HUGE FILES

Dear John,

You may want to consider using the sysread() call. Although I can't say for sure, this might solve your problem...
sysopen(FILE, $filename, 0); while (sysread(FILE, $buffer, 10240)) { print $buffer; } close(FILE);
I hope it helps!
  -Adam