Hello Perl Programmers

I have a question regarding openning a file

How can I start reading a file from n line?

For example 

I open a File like this way

open(INPUT, $file)
while (<INPUT>)
{
 do something with $_;
}

But It starts to read from line #1, what I want is that start reading
exactly from line 10.

How can I do that

Thanks in advanced

-- 
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