Sorting files by their lines of code

Every once in a while curiosity strikes me and I want to know what the largest file, in lines, in a code base is. I stitched together a few unix commands to sort all your message files by their line count.

find . -type f -name '*.m' -exec wc -l {} + | sort -n