mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
8 lines
289 B
Bash
Executable File
8 lines
289 B
Bash
Executable File
#!/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
|