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.
 
 
 
 
 
 

19 lines
301 B

#!/bin/bash
file_error="sintaxe_error"
path_file=$(find /var/www/html/aplicativo/ -type f |grep -E ".*\.php" |sed 's/ /#/g')
echo > $file_error
for file in $path_file
do
file=$(echo $file |sed 's/#/ /g')
php -lf $file > /dev/null 2>> $file_error
done
echo "$file_error:"
cat $file_error
echo