This website requires JavaScript.
Explore
Help
Sign In
Sinipelto
/
banan-os
forked from
Bananymous/banan-os
Watch
1
Star
0
Fork
You've already forked banan-os
0
Code
Pull Requests
Activity
762d22ed28
banan-os
/
linecount.sh
4 lines
85 B
Bash
Raw
Normal View
History
Unescape
Escape
Kernel: Add linecount.sh script This calculates the number of lines of code in the whole project :D
2023-03-29 03:06:57 +03:00
#!/bin/sh
Scipts: linecount doesn't count lines in build/
2023-04-02 04:09:54 +03:00
find .
|
grep -v
'build'
|
grep -E
'\.(cpp|h|S)$'
|
xargs wc -l
|
sort -n