lbry.com/check_syntax.sh
2016-10-12 12:05:20 -04:00

7 lines
138 B
Bash
Executable file

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
for FILE in $(find "$DIR" -name '*.php'); do
php7.0 -l $FILE
done