5 строки
96 Б
Bash
5 строки
96 Б
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
exec find . -name "*.php" -not -path "*/lib/*" -print0 | xargs -0 -n1 php -l
|