Skip to content

Instantly share code, notes, and snippets.

@ericdke
Created October 21, 2016 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericdke/51b411fea5340f0967da98bdef9317f8 to your computer and use it in GitHub Desktop.
Save ericdke/51b411fea5340f0967da98bdef9317f8 to your computer and use it in GitHub Desktop.
Count LOCs in Swift/Xcode project, ignoring pods
# Thanks https://gist.github.com/Tokuriku/f7d6ce5a68d2154c28b0#gistcomment-1781457
find . -path ./Pods -prune -o -name "*.swift" -print0 ! -name "/Pods" | xargs -0 wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment