From: Bruce Momjian Date: Thu, 22 Sep 2005 21:58:58 +0000 (+0000) Subject: Add "codelines" script to compute number of lines in a releaes. X-Git-Tag: REL8_1_0BETA3~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d075bb4cc225fe21c1dca907f081bfb1935a5ab;p=thirdparty%2Fpostgresql.git Add "codelines" script to compute number of lines in a releaes. --- diff --git a/src/tools/codelines b/src/tools/codelines new file mode 100755 index 00000000000..b74a0c792ed --- /dev/null +++ b/src/tools/codelines @@ -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