blob: 6455e83e0a45c1be7ae71aa405a0596fec2c6f45 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# $PostgreSQL: pgsql/src/tools/codelines,v 1.3 2006/03/11 04:38:41 momjian Exp $
# 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
|