in reply to Head comments parsing

Maybe something like this for Perl
my @input = <FILE> ; my @body = grep {! (1 ... /^[^#]/) } @input; print "$special_cvs_header @body";
update:  grep {! (1 ... /^(?!#)/) } @input; is better though it looks like swearing