Last active
July 27, 2016 02:26
-
-
Save wtsnz/7242148 to your computer and use it in GitHub Desktop.
Find the amount of lines of code in your iOS Project.Run this in the root project folder
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
Obj-c | |
find . -iname "*.m" -o -iname "*.h" -not -path "*/Pods/*" -not -path "*ThirdParty*" -exec wc -l '{}' + | |
Swift: | |
find . -iname "*.swift" -not -path "*/Pods/*" -not -path "*/Carthage/*" -not -path "*submodules*" -exec wc -l '{}' + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment