(Video materials in preparation)
bomnude : Removes the byte order mark of UTF-8.
Usage : bomnude [<file>]
Version : Mon Mar 2 15:27:14 JST 2020
Edition : 1
0xEF 0xBB 0xBF
Removes the following 3-byte byte order mark of UTF-8 from the start of a file.
0xEF 0xBB 0xBF
$ xdump -v data
EF BB BF 2E 2E 2E 30 30 31 32 33 2C 41 41 0A : ......00123,AA.
$ bomnude data | xdump -v
2E 2E 2E 30 30 31 32 33 2C 41 41 0A : ...00123,AA.