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\' tx
To remove single quotes, simply use double quotes for the regex in sed:
sed
sed -e "s/'//g" ./new_file.csv