Skip to content

Instantly share code, notes, and snippets.

@mindbat
Created June 7, 2013 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mindbat/5726142 to your computer and use it in GitHub Desktop.
Save mindbat/5726142 to your computer and use it in GitHub Desktop.
Quickly run php lint against a directory of files
find <directory> -type f -name '*php' -print0 | xargs -0 -n1 -P10 php -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment