diff --git a/lines_count.sh b/lines_count.sh new file mode 100755 index 0000000..821501f --- /dev/null +++ b/lines_count.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find . \( -name "*.h" -o -name "*.cpp" \) -print0 | xargs -0 wc -l