Replacing a pattern in a file
Hi.,
In my file I want to replace the occurance of the VARIABLE_1 with VARIABLE_2 in a particular line..
HERE is the Example:
# sed -e 's/multimediaGroup type="media" dbid=$a/multimediaGroup type="media" dbid=$b /' abc>abc.new
here I am replacing the $a with $b But it is not working..
It is not showing any error .., But the $a value remains same...
Any body Guide me how to do it...

