Skip to main content
2 of 2
added 101 characters in body
unxnut
  • 6.1k
  • 2
  • 22
  • 28
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
unxnut
  • 6.1k
  • 2
  • 22
  • 28