Is there a way to determine how many lines of code an Xcode project contains? I promise not to use such information for managerial measurement or employee benchmarking purposes. ;)
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Check out CLOC.
|
||||
|
In terminal, change into the project directory and run:
If you want only certain file types, try something like
|
|||
|
|
|
I have been using CLOC as mentioned by PERL is already part of Mac OS and you can invoke the script this way to find out your number of lines you have written:
This is an example of output i got from such command:
|
|||
|
|
|
You can install SLOCCount through MacPorts. Or, more crudely, you can use wc -l. |
|||
|