Drupal modules for browsing and managing Fedora-based digital repositories.
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.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
RETURN=0
|
|
|
|
FILES=`find -L $1 -name "*"`
|
|
|
|
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
|