I was trying to use sed to count all the lines based on a particular extension.
find -name \'*.m\' -exec wc -l {} \\; | sed ...
I was tryi
You may also get the nice formatting from wc with :
wc `find -name '*.m'`