in reply to Cut off beginning lines of a file

You could do something like:
{ my $i; while(<>){$i++;print if $i>32;} }

You didn't say what you wished to do with the output, but you could direct the print to a file, etc.
chas