I'm dismayed by the use of cat.
find . -regex '.+\.cc$' | xargs cat | wc
is the same as
find . -regex '.+\.cc$' | xargs wc
and
cat *.java | grep '[;{]' | wc -l
is the same as
grep '[;{]' *.java | wc -l
or even
grep -c '[;{]' *.java
You almost never need
One rarely needs to use cat.
