3 lines
79 B
Bash
Executable File
3 lines
79 B
Bash
Executable File
#!/bin/bash
|
|
find . \( -name "*.h" -o -name "*.cpp" \) -print0 | xargs -0 wc -l
|