moved to own sub directory, execute them as ./contrib/foo.sh
[shipsimu.git] / find-bad-php.sh
diff --git a/find-bad-php.sh b/find-bad-php.sh
deleted file mode 100755 (executable)
index 2fdfecf..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-echo "$0: Searching for PHP scripts (except 3rd party) ..."
-PHP=`find -type f -name "*.php" | grep -v "third_party"`
-
-for SCRIPT in ${PHP};
-do
-       HEADER=`cat ${SCRIPT} | head -n 1 | grep -v "<?"`
-
-       FOOTER=`cat ${SCRIPT} | tail -n 1 | grep -v "?>"`
-
-       if [ -n "${HEADER}" ];
-       then
-               echo "$0: Script '${SCRIPT}' has non-typical header."
-       fi
-
-       if [ -n "${FOOTER}" ];
-       then
-               echo "$0: Script '${SCRIPT}' has non-typical footer."
-       fi
-
-       LINT=`php -l "${SCRIPT}" 2>&1 | grep -v "No syntax errors detected in"`
-
-       if [ -n "${LINT}" ]
-       then
-               echo "$0: ${LINT}"
-       fi
-done
-
-echo "$0: All done."
-exit 0