Created
November 13, 2020 15:33
-
-
Save siberianisaev/495a7c062c03e45abf75503c6bb3e07d to your computer and use it in GitHub Desktop.
Count of lines in project (include UI)
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
find . -type d \( -path ./Pods -o -path ./Vendor \) -prune -o \( -iname \*.m -o -iname \*.mm -o -iname \*.h -o -iname \*.swift -o -iname \*.storyboard -o -iname \*.xib \) -print0 | xargs -0 wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment