I have this pair in my configuration file:
TheParameter="TheValue"
I am trying to replace the TheValue from a bash script like, with no luck.
sed 's/TheParameter="(.*)"/TheParameter="NewValue"/' /etc/my.conf
Can anyone suggest the correct way?