Moved to contrib/ in preperation for merge
[mailer.git] / contrib / debug-lines.sh
1 #!/bin/sh
2
3 # Shell script to determine where in the code are commented-in debug lines
4
5 if ! test -e "modules.php"; then
6         echo "$0: Please execute this script from root directory."
7         exit 1
8 fi
9
10 svn diff |grep -v "svn diff" | grep "DEBUG" | grep "+" | grep -v "//\* DEBUG" > DOCS/debug-lines.log