in reply to Skipping the first 4 lines of a file:: Is there a better way?

#!/usr/bin/perl -n next unless $. > 4; # your code here

edit: see perlvar and perlrun