Skip to content

Instantly share code, notes, and snippets.

@leemorgan
Created October 19, 2014 18:28
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