Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created March 4, 2016 22:57
Show Gist options
  • Save thomasplevy/d1f7b51c3b37ba201fc5 to your computer and use it in GitHub Desktop.
Save thomasplevy/d1f7b51c3b37ba201fc5 to your computer and use it in GitHub Desktop.
lint all php files in directory
find . -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment