in reply to Limit to Line Length?

Not that I could find. I created a text file with two lines, each approximate 665,000 characters in length. Then I did a
open IN,"<bigline" || die; while (<IN>) { print; } close IN;
and it seemed to have worked just fine. No doubt the line length is limited only by available memory.