I am trying to replace version range 1.6,1.7 with 1.7,1.8 as below.
sed -i 's/version\>[1.6,1.7)/version\>[1.7,1.8)/g'
I have tried escaping [,),. etc. but it is not still matching [1.6,1.7)
What am I missing?
This is the full command I run to replace versions:
find . -iname 'pom.xml' -print -exec sed -i 's/version\>\[1.6,1.7)/version\>[1.7,1.8)/g' {} \;
GNU sed version 4.1.5
Linux ** 2.6.18-238 #1 SMP Fri Oct 28 08:42:39 PDT 2011 x86_64
UPDATE:
sed -i 's/version\>.*1.6,1.7)/version\>[1.7,1.8)/g'
worked for me. But that is still too generic.
sed --versionanduname. Good luck. – shellter Aug 30 '12 at 9:43sedto edit, and perhaps lines you do not wantsedto change. – Thor Aug 30 '12 at 13:43