From 5d075bb4cc225fe21c1dca907f081bfb1935a5ab Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 22 Sep 2005 21:58:58 +0000 Subject: [PATCH] Add "codelines" script to compute number of lines in a releaes. --- src/tools/codelines | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 src/tools/codelines diff --git a/src/tools/codelines b/src/tools/codelines new file mode 100755 index 0000000000..b74a0c792e --- /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