in reply to
Cut off beginning lines of a file
You could do something like:
{ my $i; while(<>){$i++;print if $i>32;} }
[download]
You didn't say what you wished to do with the output, but you could direct the print to a file, etc.
chas
Comment on
Re: Cut off beginning lines of a file
Download
Code
In Section
Seekers of Perl Wisdom