How to remove special 'M-BM-' character with sed
Solution 1:
The M-BM-
characters are an ASCII representation of byte sequence 0xc2 0xa0
, which is the UTF8 encoding of unicode character A0
- a non-breaking space character. This character can be inserted in both LibreOffice and Microsoft Word documents using the key sequence Ctrl+Shift+SPACE.
For example if we create a new .odt document in LibreOffice and type ABCCtrl+Shift+SPACEDEF, then Save As... Text
(ignoring the warning that the document may contain features that cannot be saved in that format), then view the resulting .txt file with cat
:
$ cat nbsp.txt
ABC DEF
and then again with the -v
switch to show non-printing characters
$ cat -v nbsp.txt
M-oM-;M-?ABCM-BM- DEF
Note that we also get an initial sequence M-oM-;M-?
or hexadecimal 0xef 0xbb 0xbf
which is the UTF8 byte order mark (BOM) consistent with the file type reported by the file
command i.e.
$ file nbsp.txt
nbsp.txt: UTF-8 Unicode (with BOM) text
Using od
to print the hexadecimal values in byte order we see
$ od -tx1 nbsp.txt
0000000 ef bb bf 41 42 43 c2 a0 44 45 46 0a
0000014
It is possible to manipulate these characters using standard tools like sed
or tr
by specifying the hex codes as escape sequences e.g. to replace the non-breaking space with a plain ASCII space
$ sed 's/\xc2\xa0/ /g' nbsp.txt
ABC DEF
Checking again with od
confirms the replacement by an ordinary ASCII space 0x20 (decimal 32)
$ sed 's/\xc2\xa0/ /g' nbsp.txt | od -tx1
0000000 ef bb bf 41 42 43 20 44 45 46 0a
0000013
In gnome-terminal (and maybe other UTF8-aware terminal emulators), it's also possible to enter the unicode code point value directly using the key sequence Ctrl+Shift+u followed by a hexidecimal value then the Enter key - the sequence shows up initially as u̲.̲.̲.̲ but then the character should compose when you hit Enter e.g. for the same non-breaking space replacement we can do
$ sed 's/Ctrl+Shift+ua0
which displays as
$ sed 's/̲/̲u̲a̲0̲
and then completes as
$ sed 's/ / /g' nbsp.txt
ABC DEF
Using cat -v
we can confirm the M-BM-
sequence has become an ordinary space
$ sed 's/ / /g' nbsp.txt | cat -v
M-oM-;M-?ABC DEF
You may want to look at more generic encoding converters such as iconv and uconv as well.
Solution 2:
After trying a lot of things, I have finally found solution. To replace that weird character with sed, you need to copy and paste exact text that contains that weird space near it, and then paste it directly into sed command:
sed -r 's:paste-here:<p>:g' -i file
Which will look like this in sed command:
sed -r 's:<p> :<p>:g' -i file
but it will work anyway.
Solution 3:
You can remove ^M from the files directly via sed command, e.g.:
sed -i'.bak' s/\r//g *.*
If you're happy with the changes, remove the .bak files:
rm -v *.bak