in reply to perl's ability to handle LARGE files

Putting aside the question of if Perl can handle large files, it'd make more sense to checkpoint where you last finished checking for whatever and resume from that point the next run rather than repeat the same work over and over again. See seek and tell.

  • Comment on Re: perl's ability to handle LARGE files