mirror of
https://github.com/postgres/postgres.git
synced 2025-05-12 16:21:30 +03: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.
8 lines
230 B
Bash
Executable File
8 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
|