Skip to content

Instantly share code, notes, and snippets.

@leemorgan
Created October 19, 2014 18:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leemorgan/ca3db1841e7945c9713c to your computer and use it in GitHub Desktop.
Save leemorgan/ca3db1841e7945c9713c to your computer and use it in GitHub Desktop.
Count the lines of code in a Xcode project
# Count the lines of code in a Xcode project
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" ")" -print0 | xargs -0 wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment