diff options
author | Bruce Momjian | 2005-09-22 21:58:58 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-09-22 21:58:58 +0000 |
commit | c3fd3b22de2ebce6b7794763bef839a07408ae1d (patch) | |
tree | b8b6ce72583b69d4483e916e6c7f3614b65900d0 | |
parent | 191755c7c8d4f13a31c90cf1525bd5bcf0967c1c (diff) |
Add "codelines" script to compute number of lines in a releaes.
-rwxr-xr-x | src/tools/codelines | 4 |
1 files changed, 4 insertions, 0 deletions
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 |