I would need to replace in a file strings like "'a" with strings like 'a.
In practice, I need to remove the double quotes.
I was thinking to use sed to do it, but I could not find a solution til now: I guess I am making some syntax errors because of the quotes.
If you just need to remove all double quote characters from the file then you can use
trwith the-doption:Update:
If you want to replace the specific instance of
"'a"with'athen you can usesed:However, I suspect that you are after something more general than just replacing quote markes around an
acharacter. Thissedcommand will replace any instance of"'anything"with'anyhting: