Something along these lines, maybe?
# three-argument form of open() is safer open(my $input, '<', $filename ) || die "can't open $filename \n" ; my $in_header = 1; while (<$input>) { if (/Parameter/) { $in_header = 0; next; } next if $in_header; print $_; }
In reply to Re: skip lines
by moritz
in thread skip lines
by halligalli
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |