show/hide this revision's text 2 Minor wording tweak

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.

show/hide this revision's text 1

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 to use cat.