How can I make sed use double quotes ("
) as a match?
I try to replace "source/design
to "source/design_new
only without changing the second coding.
Input:
"source/design",
"include/source/design",
Expect Output:
"source/design_new", #only this line renaming
"include/source/design"
I tried with command:
sed "s/\"source\/design/\"source\/design_new/g"
but it is complaining with an unmatched "
error. Is there any way to use double quotes in sed
?