You need to open the file, read the entire file, and print out all EXCEPT the first line to the desired output file.
open INFILE, '<infile';
open OUTFILE, '>outfile';
<INFILE>; #discards first line
print OUTFILE $_ while (<INFILE>);
close OUTFILE;
close INFILE;