Created
October 21, 2016 13:55
-
-
Save ericdke/51b411fea5340f0967da98bdef9317f8 to your computer and use it in GitHub Desktop.
Count LOCs in Swift/Xcode project, ignoring pods
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
# 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