Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For debugging purposes, I need to recursively search a directory for all files which start with a UTF-8 byte order mark (BOM). My current solution is a simple shell script:

find -type f |
while read file
do
    if [ "`head -c 3 -- "$file"`" == $'\xef\xbb\xbf' ]
    then
        echo "found BOM in: $file"
    fi
done

Or, if you prefer short, unreadable one-liners:

find -type f|while read file;do [ "`head -c3 -- "$file"`" == $'\xef\xbb\xbf' ] && echo "found BOM in: $file";done

It doesn't work with filenames that contain a line break, but such files are not to be expected anyway.

Is there any shorter or more elegant solution?

Are there any interesting text editors or macros for text editors?

share|improve this question

9 Answers

up vote 60 down vote accepted

What about this one simple command which not just finds but clears nasty BOM? :)

find . -type f -exec sed '1s/^\xEF\xBB\xBF//' -i.bak {} \; -exec rm {}.bak \;

I love "find" :)

If you want just to show BOM files, use this one:

grep -rl $'\xEF\xBB\xBF' .
share|improve this answer
Brilliant, sir... thank you! :-) – KyleFarris Jun 9 '11 at 18:22
4  
Incorrectly detects PDF with a BOM marker.. that's because it searches the whole document, not just the first line – Olivier Refalo Sep 23 '11 at 14:38
4  
Modifies binary files... – Halil Özgür Nov 29 '11 at 15:40
Or with ack: "ack '\xEF\xBB\xBF'" – Smar Mar 17 '12 at 1:46
1  
change the sed command to add a 1 before the leading 's' so it only applies to the first line – Ben Combee Jun 6 '12 at 4:07
show 2 more comments

THE BEST EASY way to do this on Windows:

total commander -> go to project's root dir -> find files (alt+f7) -> file types *.* -> Find text "EF BB BF" -> check 'Hex' checkbox -> search

and you get the list :)

share|improve this answer

If you accept some false positives (in case there are non-text files, or in the unlikely case there is a ZWNBSP in the middle of a file), you can use grep:

fgrep -rl `echo -ne '\xef\xbb\xbf'` .
share|improve this answer
find . -type f -print0 | xargs -0r awk '
    /^\xEF\xBB\xBF/ {print FILENAME}
    {nextfile}'

Most of the solutions given above test more than the first line of the file, even if some (such as Marcus's solution) then filter the results. This solution only tests the first line of each file so it should be a bit quicker.

share|improve this answer
Got is working with the following on Linux (RHEL6) - find . -type f -print0 | xargs -0 awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}' – Olivier Refalo Sep 23 '11 at 14:37

I would use something like:

grep -orHbm1 "^`echo -ne '\xef\xbb\xbf'`" . | sed '/:0:/!d;s/:0:.*//'

Which will ensure that the BOM occurs starting at the first byte of the file.

share|improve this answer

For windows user, see this. (good php script for find BOM in your project)

share|improve this answer
The linked website shows: "Website Offline, No Cached Version Available". – vog Jan 9 '12 at 12:57
same script is also available in github: github.com/emrahgunduz/BomCleaner – emrahgunduz Apr 16 at 15:26
find -type f -print0 | xargs -0 grep -l `printf '^\xef\xbb\xbf'` | sed 's/^/found BOM in: /'
  • find -print0 puts a null \0 between each file name instead of using new lines
  • xargs -0 expects null separated arguments instead of line separated
  • grep -l lists the files which match the regex
  • The regex ^\xeff\xbb\xbf isn't entirely correct, as it will match non-BOMed UTF-8 files if they have zero width spaces at the start of a line
share|improve this answer
You still need a "head 1" in the pipe before the grep – MSalters Oct 17 '08 at 14:08

An overkill solution to this is phptags (not the vi tool with the same name), which specifically looks for PHP scripts:

phptags --warn ./

Will output something like:

./invalid.php: TRAILING whitespace ("?>\n")
./invalid.php: UTF-8 BOM alone ("\xEF\xBB\xBF")

And the --whitespace mode will automatically fix such issues (recursively, but asserts that it only rewrites .php scripts.)

share|improve this answer

I used this to correct only javascript files:

find . -iname *.js -type f -exec sed 's/^\xEF\xBB\xBF//' -i.bak {} \; -exec rm {}.bak \;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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