in reply to
Cut off beginning lines of a file
Basically same as above solutions, but presented as a command-line filter:
perl -ne 'print if $. >= 33'
[download]
Comment on
Re: Cut off beginning lines of a file
Download
Code
In Section
Seekers of Perl Wisdom