Jim Meyering <j...@meyering.net> writes: > Jim Meyering wrote: >> >> I've changed the hybrids to be a simple range: >> >> git grep -l -E '[0-9]{4} *Free Software F' \ >> | xargs perl -pi -e 's/-2009, 2010 +(Free Software)/-2010 $1/' >> >> And also changed the two spaces before "Free Software..." to one: >> >> grep -l -E '[0-9]{4} *Free Software F' \ >> | xargs perl -pi -e 's/ +(Free Software)/ $1/' > > Ha! > Simon beat me to it with the first part, so this makes > only the latter change:
Thanks. Sorry about the git racing :-) /Simon