Created
October 17, 2012 17:38
-
-
Save sylvainfilteau/3906935 to your computer and use it in GitHub Desktop.
Find number of occurence of the word "class" in php file in the "tests" directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find tests -iname "*.php" | xargs grep "class" | sort | cut -f 1 -d : | uniq -c | sort -n -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment