in reply to skipping the first line of a file
my $first_line = <DATA>; while (<DATA>) { ... } [download]
while (<DATA>) { next if $. == 1; } [download]