1 wc -l exec/*.c exec/*.h include/*.h lib/*.c lib/*.h
3 echo "Application Interface Specification Implementation Lines Of Code"
5 cat exec/*.c exec/*.h | wc -l
8 cat lib/*.c lib/*.h | wc -l
10 echo -n "include LOC "
11 cat include/*.h | wc -l
14 cat exec/*.c exec/*.h lib/*.c lib/*.h include/*.h | wc -l