Add "codelines" script to compute number of lines in a releaes.

This commit is contained in:
Bruce Momjian 2005-09-22 21:58:58 +00:00
parent c37ddf371d
commit 5d075bb4cc

4
src/tools/codelines Executable file
View File

@ -0,0 +1,4 @@
:
# This script is used to compute the total number of "C" lines in the release
find . -name '*.[chyl]' | xargs cat| wc -l