You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
246 B
15 lines
246 B
12 years ago
|
#!/bin/bash
|
||
|
|
||
|
RETURN=0
|
||
|
FILES=`find -L $1 -name "*.info" -o -name "*.txt" -o -name "*.md"`
|
||
|
echo "Testing for files with DOS line endings..."
|
||
|
for FILE in $FILES
|
||
|
do
|
||
|
file $FILE | grep CRLF
|
||
|
if [ $? == 0 ]
|
||
|
then
|
||
|
RETURN=1
|
||
|
fi
|
||
|
done
|
||
|
exit $RETURN
|