Hi there I've just started using & exploring Shell Scripts so please be patient, alright :)
What I'm trying to accomplish: To display the current iOS projects Total lines of code.
What I don't know: How to take this information and use it in my iOS project and to finally display the total lines of code in a UILabel. (eg. label.text = @"totallinesofcode";)
How do I do this? Cheers, Daniel Ran
What I've got so far: I've been able to attract the total lines of code information by passing these lines...
cd Desktop/Project\ Connection/Connection
find . \( -iname \*.m -o -iname \*.mm -o -iname \*.c -o -iname \*.cc -o -iname \*.h \) -exec wc -l '{}' \+