Skip to main content

Remove backslashes from a text file

I have

Input:

 NISHA =\455  

Output:

 NISHA = 455

I want to remove \ from output. I tried to use command sed "s/[\]//g" P but it is not working and it flags an error:

character found after backslash is not meaningful
yisha
  • 929
  • 4
  • 11
  • 16