in reply to Re: Delete specific lines from txt file.
in thread Delete specific lines from txt file.

hmm, that sounds good, but I have no clue how to do it... Can you provide some code? Thanks

  • Comment on Re^2: Delete specific lines from txt file.

Replies are listed 'Best First'.
Re^3: Delete specific lines from txt file.
by roboticus (Chancellor) on Aug 09, 2012 at 21:02 UTC

    FredFredFred:

    # 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.