Skip to content

Instantly share code, notes, and snippets.

@Neolot
Created July 13, 2012 08:50
Show Gist options
  • Save Neolot/3103736 to your computer and use it in GitHub Desktop.
Save Neolot/3103736 to your computer and use it in GitHub Desktop.
Remove UTF-8 BOM
find . -type f \( -name '*.css' -o -name '*.js' -o -name '*.txt' -o -name '*.php' -o -name '*.htm' -o -name '*.html' \) -print0 | xargs -0 grep -l `printf '^\xef\xbb\xbf'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment