I have file1.txt in UNIX as following
[Section A]
$param1=value1
$param2=value2
[Section B]
$param1=value1
$param2=value2
$param3=value3
I want to edit value2 in Section B to be new_value2 programmatically
[Section A]
$param1=value1
$param2=value2
[Section B]
$param1=value1
$param2=new_value2
$param3=value3
Any idea what should be the unix command to do this (using sed?)?
Thanks a lot.