2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/dev/finddosfiles.sh
2013-01-13 19:34:43 +01:00

16 lines
448 B
Bash
Executable File

#!/bin/sh
#------------------------------------------------------
# Script to find files that are not Unix encoded
#
# Laurent Destailleur - eldy@users.sourceforge.net
#------------------------------------------------------
# Usage: finddosfiles.sh
#------------------------------------------------------
# To detec
find . -type f -iname "*.php" -exec file "{}" + | grep CRLF
# To convert
#find . -type f -iname "*.php" -exec dos2unix "{}" +;