in reply to Re: telling script to read from next line
in thread telling script to read from next line

If you're working with large files, this is a bad idea, as the whole file will be read into memory. As others have suggested, it's better to do:

while (<FILE>) { # do something here }
because this won't use so much memory.