in reply to Cut off beginning lines of a file

Just skip the first 32 lines:
... while( <FH> ){ $. <= 32 and next; ... } ...