Forked from Tokuriku/Count lines of code in Xcode project
Created
March 14, 2021 06:23
-
-
Save ranmyfriend/ebb1fb25fe3347f95597f406010a6fc6 to your computer and use it in GitHub Desktop.
Count lines of code in SWIFT Xcode project
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
1. Open Terminal | |
2. cd to your Xcode project | |
3. Execute the following when inside your target project: | |
find . -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