Last active
December 28, 2015 17:59
-
-
Save vincent178/7539369 to your computer and use it in GitHub Desktop.
How many lines of codes in your project
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
XCode project codes without CocoaPods | |
find . \( -iname \*.m -o -iname \*.mm -o -iname \*.c -o -iname \*.cc -o -iname \*.h \) \-not -path "./Pods/*" -exec wc -l '{}' \+ | |
Sinatra project codes | |
find . \( -iname \*.rb -o -iname \*.rake \) -exec wc -l '{}' \+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment