in reply to Large Files in Perl 5.004_04 (more than 2Gigs) on Solaris 8

Unless you specifically compile Perl with large file support (which is a more recent feature), Perl cannot handle it directly. The usual workaround is to open a pipe that cats from and to the file. This works because while Perl doesn't understand large files, it understands endless pipes, and your cat utility understands how to stream large files.

Yeah, it is a hack. But it is a useful one to know about.

  • Comment on Re (tilly) 1: Large Files in Perl 5.004_04 (more than 2Gigs) on Solaris 8