Skip to content

Instantly share code, notes, and snippets.

@vincent178
Last active December 28, 2015 17:59
Show Gist options
  • Save vincent178/7539369 to your computer and use it in GitHub Desktop.
Save vincent178/7539369 to your computer and use it in GitHub Desktop.
How many lines of codes in your project
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