vote up 1 vote down star

Hi,

has anyone an idea how an awk script (presumably a one-liner) fro 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

Cheers,

flag

1 Answer

vote up 3 vote down check

Found here:

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

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

Enjoy!

link|flag
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 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 at 12:36

Your Answer

Get an OpenID
or

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