in reply to Re: Search and replace in all odd lines
in thread Search and replace in all odd lines
The above will apply the changes in line numbers 1,3,5,7,......perl -i.bak -nle 's/search/replace/g unless $. & 2; print' file(s)
The above will apply the changes in line numbers 2,4,6,8,......perl -i.bak -nle 's/search/replace/g unless $. & 1; print' file(s)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Search and replace in all odd lines
by johngg (Canon) on Jun 25, 2007 at 13:36 UTC | |
by clinton (Priest) on Jun 25, 2007 at 14:54 UTC | |
by johngg (Canon) on Jun 25, 2007 at 15:02 UTC |