Skip to main content
added 101 characters in body
Source Link
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
sed -i 's/\"//g' filename

You can escape the " character by putting a \.

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
Source Link
unxnut
  • 6.1k
  • 2
  • 22
  • 28

sed -i 's/\"//g' filename

You can escape the " character by putting a \.