A file with this content:
var1 = true
How do I toggle this value with sed/awk?
I looked into groups, sed addresses..but nowhere does it say how to save a return value like "found it" or "not found it".
Search replace var1 = true to var1 = false
edit: doesn't seem to write into the file ..ever:
sed 's/var1 = true/var1 = foo/g' ./variables1
sed 's/var1 = false/var1 = true/g' ./variables1
sed 's/var1 = foo/var1 = false/g' ./variables1
command line output:
var1 = foo
var1 = true
var1 = true
weird
edit2: it worked with sed -i for inplace editing