Unuk/linecount.sh
2012-01-14 03:39:10 +00:00

5 lines
167 B
Bash
Executable File

#!/bin/bash
echo "cpp - `find . -name '*.cpp' -print0 | wc -l --files0-from=- | tail -n1`"
echo "h - `find . -name '*.h' -print0 | wc -l --files0-from=- | tail -n1`"