Files
Grid/scripts/linecount
T

13 lines
358 B
Bash
Executable File

#!/bin/sh
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