Skip to content

Instantly share code, notes, and snippets.

@ccabanero
Created August 9, 2014 12:14
Show Gist options
  • Save ccabanero/eeb51ec2b5b73702a067 to your computer and use it in GitHub Desktop.
Save ccabanero/eeb51ec2b5b73702a067 to your computer and use it in GitHub Desktop.
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
@fukemy
Copy link

fukemy commented Feb 8, 2017

hello. I want to remove library when count
eg this line:
./Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h
T.y

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment