sed to remove single and double quotes at the same time
regex, sed
Solution
Another possibility would be to use `tr`:
tr -d \'\" file
Problem
I am trying to remove single quotes and double quotes from a file. Can I do it in a single sed command? I am trying : ``` sed 's/\"//g;s/\'//g' txt file ``` but get this error `' ' is unmatched. Please help.