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 purp
Nozzi's version doesn't work for me, but this one:
find . -type f -print0 | xargs -0 cat | wc -l