Skip to content

Instantly share code, notes, and snippets.

@AlexChittock
Created September 18, 2012 09:45
Show Gist options
  • Save AlexChittock/3742298 to your computer and use it in GitHub Desktop.
Save AlexChittock/3742298 to your computer and use it in GitHub Desktop.
Find PHP files containing tabbed indents
find . -name "*.php" | xargs grep -c -P '^\t+' | grep -v ':0$'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment