JakubOnderka / PHP-Parallel-Lint

This tool check syntax of PHP files faster than serial check with fancier output.
Other
647 stars 62 forks source link

a quick one-liner alternative #160

Closed divinity76 closed 2 years ago

divinity76 commented 2 years ago

just in case someone wants a quick'n dirty one-liner alternative, try

find . -iname "*.php" -print0 | xargs -0 --max-args=1 --max-procs=$(nproc) '-I{}' sh -c 'php --syntax-check {} || true'  | grep --invert-match "^No syntax errors detected in"