has anyone an idea how an awk script (presumably a one-liner) for removing a BOM would look like?

Specification:

  • print every line after the first (NR > 1)
  • for the first line: If it starts with #FE #FF or #FF #FE, remove those and print the rest
link|improve this question

feedback

4 Answers

up vote 20 down vote accepted

Found here:

http://unix.derkeiler.com/pdf/Newsgroups/comp.unix.shell/2008-10/msg00031.pdf

awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' INFILE > OUTFILE

Enjoy!

link|improve this answer
1  
It seems that the dot in the middle of the sub statement is too much (at least, my awk complains about it). Beside this it's exactly what I searched, thanks! – Boldewyn Jul 1 '09 at 12:21
This solution, however, works only for UTF-8 encoded files. For others, like UTF-16, see Wikipedia for the corresponding BOM representation: en.wikipedia.org/wiki/Byte_order_mark – Boldewyn Jul 1 '09 at 12:36
I agree with the earlier comment; the dot does not belong in the middle of this statement and makes this otherwise great little snippet an example of an awk syntax error. – Brandon Rhodes Dec 8 '09 at 14:37
1  
So: awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' INFILE > OUTFILE and make sure INFILE and OUTFILE are different! – mrclay Feb 12 '10 at 20:30
If you used perl -i.orig -pe 's/^\x{FFFE}//' badfile you could rely on your PERL_UNICODE and/or PERLIO envariables for the encoding. PERL_UNICODE=SD would work for UTF-8; for the others, you’d need PERLIO. – tchrist Aug 14 '11 at 23:38
feedback

Using sed:

# Removing BOM from all text files in current directory:
sed -i '1 s/^\xef\xbb\xbf//' *.txt

Advantage of using Gnu Sed: the -i parameter means "in place", and will update files without need of redirections or weird tricks.

link|improve this answer
That's nice, too. Thanks! – Boldewyn Sep 6 '10 at 7:37
feedback

Not awk, but simpler:

tail -c +4 UTF8 > UTF8.nobom

To check for BOM:

hd -n 3 UTF8

If BOM is present you'll see: 00000000 ef bb bf ...

link|improve this answer
The tail trick is cool. Thanks! – Boldewyn Feb 16 '10 at 21:02
2  
BOMs are 2 bytes for UTF-16 and 4 bytes for UTF-32, and of course have no business being in UTF-8 in the first place. – tchrist Aug 14 '11 at 23:33
@tchrist: from wikipedia: "The Unicode Standard does permit the BOM in UTF-8, but does not require or recommend its use. Byte order has no meaning in UTF-8 so in UTF-8 the BOM serves only to identify a text stream or file as UTF-8." – Karoly Horvath Mar 17 at 17:31
@KarolyHorvath Yes, precisely. Its use is not recommended. It breaks stuff. The encoding should be specified by a higher-level protocol. – tchrist Mar 17 at 18:28
1  
@tchrist: you mean it breaks broken stuff? :) proper apps should be able to handle that BOM. – Karoly Horvath Mar 17 at 18:31
show 2 more comments
feedback

I know the question was directed at unix/linux, thought it would be worth to mention a good option for the unix-challenged (on windows, with a UI).
I ran into the same issue on a WordPress project (BOM was causing problems with rss feed and page validation) and I had to look into all the files in a quite big directory tree to find the one that was with BOM. Found an application called Replace Pioneer and in it:

Batch Runner -> Search (to find all the files in the subfolders) -> Replace Template -> Binary remove BOM (there is a ready made search and replace template for this).

It was not the most elegant solution and it did require installing a program, which is a downside. But once I found out what was going around me, it worked like a charm (and found 3 files out of about 2300 that were with BOM).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.