Right now, to get to a certain line number, I will open the file, set a for
loop to get a line until line number is reached, and then quit.  Is there a
faster way?

ex:     for (my $i = 1; $i <= $LineNumber; $i++)
        {
                $Line = $FileHandle->getline;
        }

Thanks.

Sean

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to