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

link|improve this question

1  
$? will return the success of the last command executed. This will answer your "found it" or "not found it" request. There are many sed/awk tutorials on stackoverflow and google for this question – sdolgy Jul 11 '11 at 11:29
feedback

2 Answers

sed 's/var1 = true/var1 = false/g'
link|improve this answer
although that doesn't replace the value in the file, as he was asking. write his shell script for him ;) – sdolgy Jul 11 '11 at 11:29
oh sorry, toggle. Change true to foo, false to true, foo to false then using my sed expression above. – Scott Wilson Jul 11 '11 at 11:31
@Scott hm strange, it makes perfect sense but it still doesn't work. I'll edit my answer to what I have now. – Blub Jul 11 '11 at 11:45
Last one should be foo to false. – Scott Wilson Jul 11 '11 at 12:12
feedback

Using gawk for the capturing parentheses:

printf "%s\n" "v1 = true" "v2=false" |
gawk '
    match($0, /([[:alnum:]]+)[[:space:]]*=[[:space:]]*(true|false)/, ary) {
        printf("%s = %s\n", ary[1], ary[2] == "true" ? "false" : "true")
    }
'

Produces

v1 = false
v2 = true

To write to the same filename, use something like this:

filename=./variables1
tmpfile=$(mktemp)   # or use tmpfile="$filename.tmp.$(date +%s).$$"

gawk '...' "$filename" > "$tmpfile" && 
  mv "$filename" "$filename"~ && 
  mv "$tmpfile" "$filename"

Remove the first mv if you don't care to make a backup of the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.