find all files recursively and do a line count and get the total number of lines of code

Submitted by barnettech on
find . -print | xargs wc -l | sort -nr