1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

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