I'm trying to replace \" (backslash doouble quote) by ' (quote) using sed.
sed "s/\\\"/\'/g" file.txt
The command doesn't work as expected. It replaces all the " in the text file, not only the \".
It does the same thing as sed "s/\"/\'/g" file.txt
I'm working on Mac OS X Leopard.
Does any one have a clue?