blob: 9a8e11bf4000d0c40e7dbbbdd02be5ad6c7f8102 (
plain)
1
2
3
4
5
6
7
|
#!/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 CVS tree after a 'make distclean'
find . -name '*.[chyl]' | xargs cat| wc -l
|