Skip to content

Instantly share code, notes, and snippets.

View collinhundley's full-sized avatar

Collin Hundley collinhundley

View GitHub Profile
@collinhundley
collinhundley / Count lines of code in Xcode project
Last active August 29, 2015 14:25 — forked from ccabanero/Count lines of code in Xcode project
Count lines of code in Xcode project
1. Open Terminal
2. cd to your Xcode project
3. Execute the following when inside your target project:
find . -name "*.[hm]" -print0 | xargs -0 wc -l