blob: 11e86accf271d7656f7c53311dc03454e4b6df9d (
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 Git tree after a 'make distclean'
find . -name '*.[chyl]' | xargs cat| wc -l
|