This website requires JavaScript.
Explore
Help
Sign In
Bananymous
/
banan-os
Watch
1
Star
1
Fork
You've already forked banan-os
1
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
b6896a6d85
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