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 #FFor#FF #FE, remove those and print the rest
|
has anyone an idea how an awk script (presumably a one-liner) for removing a BOM would look like? Specification:
|
||||
|
|
|
Found here: http://unix.derkeiler.com/pdf/Newsgroups/comp.unix.shell/2008-10/msg00031.pdf
Enjoy! |
|||||||||||||||||||
|
|
Using GNU
On FreeBSD or Mac OS X:
Advantage of using GNU or FreeBSD sed: the |
|||||||
|
|
Not awk, but simpler:
To check for BOM:
If BOM is present you'll see: |
|||||||||||||||||||||
|
|
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).
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). |
|||
|
|