forked from Wavyzz/dolibarr
31 lines
901 B
Bash
Executable File
31 lines
901 B
Bash
Executable File
#!/bin/sh
|
|
#------------------------------------------------------
|
|
# Script to find files that are not Unix encoded
|
|
#
|
|
# Laurent Destailleur - eldy@users.sourceforge.net
|
|
#------------------------------------------------------
|
|
# Usage: fixdosfiles.sh [list|fix]
|
|
#------------------------------------------------------
|
|
|
|
# Syntax
|
|
if [ "x$1" != "xlist" -a "x$1" != "xfix" ]
|
|
then
|
|
echo "Usage: fixdosfiles.sh [list|fix]"
|
|
fi
|
|
|
|
# To detec
|
|
if [ "x$1" = "xlist" ]
|
|
then
|
|
find . -iname "*.php" -o -iname "*.sh" -o -iname "*.pl" -o -iname "*.lang" -o -iname "*.txt" -exec file "{}" + | grep -v 'htdocs\/includes' | grep CRLF
|
|
fi
|
|
|
|
# To convert
|
|
if [ "x$1" = "xfix" ]
|
|
then
|
|
for fic in `find . -iname "*.php" -o -iname "*.sh" -o -iname "*.pl" -o -iname "*.lang" -o -iname "*.txt" -exec file "{}" + | grep -v 'htdocs\/includes' | grep CRLF | awk -F':' '{ print $1 }' `
|
|
do
|
|
echo "Fix file $fic"
|
|
dos2unix $fic
|
|
done;
|
|
fi
|