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

13 lines
358 B
Plaintext
Raw Normal View History

2015-05-18 16:28:29 +01:00
#!/bin/sh
2015-06-09 10:26:19 +01:00
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc tests/*.cc benchmarks/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h
echo "lib"
wc -l lib/*.h lib/*/*.h lib/*/*/*.h lib/*.cc lib/*/*.cc lib/*/*/*.cc lib/*/*/*/*.cc lib/*/*/*/*.h | grep total
echo "tests"
wc -l tests/*.cc | grep total
echo "benchmarks"
wc -l benchmarks/*.cc | grep total