I have a file that has a single line with a lot of !
characters. I want to remove all of the !
characters.
I tried this:
sed s/!// myfile
and this:
sed 's/!//' myfile
and this:
sed 's/"\!*"//' myfile
But they all just print out all of the "!".
I must be missing something obvious. Any ideas?