... until the collector arrives ...

This "blog" is really just a scratchpad of mine. There is not much of general interest here. Most of the content is scribbled down "live" as I discover things I want to remember. I rarely go back to correct mistakes in older entries. You have been warned :)

2006-07-13

Crude Code Line Counting

I used the following UNIX pipe to perform crude code line counting:

find . -name '*.java' -not -wholename '*/generated/*' -exec cat {} \; |
sed -e '/^[ \t]*$/d' |
wc -l

Every non-blank line is counted.

Blog Archive