http://qs321.pair.com?node_id=623140


in reply to Re: Search and replace in all odd lines
in thread Search and replace in all odd lines

perl -i.bak -nle 's/search/replace/g unless $. & 2; print' file(s)
The above will apply the changes in line numbers 1,3,5,7,......
perl -i.bak -nle 's/search/replace/g unless $. & 1; print' file(s)
The above will apply the changes in line numbers 2,4,6,8,......

NOTE: Based on the idea from Re: Search and replace in all odd lines by GrandFather