Skip to content

Instantly share code, notes, and snippets.

@AlexChittock
Created September 18, 2012 10:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save AlexChittock/3742356 to your computer and use it in GitHub Desktop.
Save AlexChittock/3742356 to your computer and use it in GitHub Desktop.
Find PHP files with trailing whitespace
find . -name "*.php" | xargs grep -c -P '\s+$' | grep -v ':0$'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment