in reply to Removing the First Line

Dropping the -n option, makes it easy to use the same logic of skipping the first line of input.

$hdr=<>; while ( <> ){ @A=split(","); print join(",", @A[0 .. 3]),"\n" }
Be well,
rir