Help for this page

Select Code to Download


  1. or download this
    perl -i.bak -nle 's/search/replace/g unless $. & 2; print' file
  2. or download this
    line 1
    line 2
    ...
    line 7
    line 8
    line 9
    
  3. or download this
    $ perl -nle 'print unless $. & 2;' lines.txt
    line 1
    ...
    line 5
    line 8
    line 9