blob: c72cab442f542cca503cbc6573da3122b430b3a9 (
plain)
1
2
3
4
5
|
:
# 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
|