blob: ae97b04177f9672f7679e376c768a90b5cdd6e9c (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# $PostgreSQL$
# This script is used to compute the total number of "C" lines in the release
# This should be run from the top of the CVS tree after a 'make distclean'
find . -name '*.[chyl]' | xargs cat| wc -l
|