in reply to Process input file
{ local $/ = \80; open HANDLE, "<", "largefile"; while (<HANDLE>) { print "$_\n"; } close HANDLE; } [download]