in reply to move down 2 lines in file?

If you know you want to skip a certain number of lines without looking at them:

my $lines_to_skip = 2 or 3; # or whatever for (1..$lines_to_skip) { <FILE> }