http://www.perlmonks.org?node_id=1010562


in reply to script not working

Putting the whole file into an array is wasteful of time and memory. What will happen if it is a 10 GB file?

You can do just as easy the following:

use Modern::Perl; use autodie; open my $file1, '<', './file1.txt'; <$file1>; my $secondline = <$file1>; my $fivefirstfile1= substr($secondline, 0, 5);
It is faster and uses less memory.

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

My blog: Imperial Deltronics