in reply to Re^2: Delete specific lines from txt file.
in thread Delete specific lines from txt file.
# Discard every other line open FIN, 'INFILE' or die; open FOUT, '>INFILE.new' or die; my $cnt; while (<FIN>) { next if $cnt%2; print FOUT; } close FH; close FOUT; rename 'INFILE', 'INFILE.bak'; rename 'INFILE.new', 'INFILE;
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|