Kernel: Add linecount.sh script
This calculates the number of lines of code in the whole project :D
This commit is contained in:
parent
ac094a48d6
commit
7f88ba70d4
|
@ -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