Hello

I am writing scripts that process big files which contains too many lines (aproximately 700 000 lines per file). My strategy until now to solve this problem is reading line per line, something like this

while (<FILE>)
{
   dosomethingwith($_);
}

Is there any way of working with multiple lines at the same time? can anyone suggest any better strategy?


-- Eduardo Vázquez Rodríguez <[EMAIL PROTECTED]> Consultoría Implantación Tel. 5322 5200


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to