Scipts: linecount doesn't count lines in build/

This commit is contained in:
Bananymous
2023-04-02 04:09:54 +03:00
parent e49d3c7bfe
commit 4a887fc706

View File

@@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
find . | grep -v 'sysroot' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n find . | grep -v 'build' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n