Is there any way to count the total number of lines inside a php project?
asked May 11, 2011 at 6:52
1 Answer 1
In Linux you have the wonderful 'wc' command:
wc -l yourfile.txt
answered May 11, 2011 at 7:01
Sign up to request clarification or add additional context in comments.
1 Comment
rfc1484
Thanks, for pointing me out the solution. Using
wc -l + `find . -name \* -print` you can get the total number of lines of all files inside a folderdefault