in reply to Cut off beginning lines of a file

Just skip the ones you don't want:

<IN> for 1..32;
Then,
while (defined(my $goodstuff = <IN>)) { # and so on
Substitute your file handle for IN.

Update
Extended example.