http://qs321.pair.com?node_id=75103


in reply to Re: Skip 21 Lines
in thread Skip 21 Lines

Something I always use for the xth line of a file....
(undef,undef,undef,undef,$line) = <FILE>;
At the expense of reading the entire file and tossing all but one of the lines. Ouch!

-- Randal L. Schwartz, Perl hacker