1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00

Prettier reporting

This commit is contained in:
Peter Boyle 2015-06-09 22:39:37 +01:00
parent 7766cc96c1
commit accd21dec7

View File

@ -1,12 +1,30 @@
#!/bin/sh
if [ $# -eq 1 ]
then
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc tests/*.cc benchmarks/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h >& tmp.fil
count=`grep total tmp.fil`
echo $count " in Grid library"
else
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc tests/*.cc benchmarks/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h
fi
echo "lib"
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h | grep total
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h >& tmp.fil
count=`grep total tmp.fil`
echo $count " in lib"
echo "tests"
wc -l tests/*.cc | grep total
for sdir in `ls -F lib/| grep /`
do
wc -l lib/${sdir}/*.h lib/${sdir}/*/*.h lib/${sdir}/*.cc lib/${sdir}/*/*.cc lib/${sdir}/*/*/*.cc lib/${sdir}/*/*/*.h >& tmp.fil
count=`grep total tmp.fil`
echo $count " in lib/${sdir}"
done
echo "benchmarks"
wc -l benchmarks/*.cc | grep total
wc -l tests/*.cc | grep total >& tmp.fil
count=`grep total tmp.fil`
echo $count " in tests"
wc -l benchmarks/*.cc | grep total >& tmp.fil
count=`grep total tmp.fil`
echo $count " in benchmarks"
rm tmp.fil