sed -i 's/\"//g' filename
You can escape the " character by putting a \. In case you want to remove all spaces as well, do the following:
sed -i 's/[" ]//g' filename
sed -i 's/\"//g' filename
You can escape the " character by putting a \. In case you want to remove all spaces as well, do the following:
sed -i 's/[" ]//g' filename