mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 06:13:34 -05:00
These are just cosmetic and don't seem worth back-patching far. I put them into 9.0 just because it was trivial to do so.
7 lines
230 B
Bash
Executable file
7 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# src/tools/codelines
|
|
|
|
# This script is used to compute the total number of "C" lines in the release
|
|
# This should be run from the top of the Git tree after a 'make distclean'
|
|
find . -name '*.[chyl]' | xargs cat| wc -l
|