mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Checks if files contains UTF-8 BOM
|
|
# in dolibarr includes tree excluding
|
|
# git repository
|
|
#
|
|
# Raphaël Doursenaud - rdoursenaud@gpcsolutions.fr
|
|
grep -rlI \
|
|
--exclude-dir='.git' \
|
|
$'\xEF\xBB\xBF' htdocs/includes
|