in reply to ignore first 5 lines of a file

It's roundabout, but certainly basic and straightforward, which is a good thing, IMHO:
@lines=<FILE>; for (my $i=5;$i<$#lines;$i++) { #stuff }