Created
July 2, 2018 13:54
-
-
Save olbartek/539386496b253b5ba51f842101dc1035 to your computer and use it in GitHub Desktop.
Count Xcode project number of lines exluding Pods directories
This file contains hidden or 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
find . -path ./Pods -prune -o -name "*.swift" -print0 | xargs -0 wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment