Kernel: Add linecount.sh script
This calculates the number of lines of code in the whole project :D
This commit is contained in:
parent
fa8e921ee8
commit
a4fb805315
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
find . | grep -v 'sysroot' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n
|
Loading…
Reference in New Issue