in reply to 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 } [download]