mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Script to count lines of code
This commit is contained in:
parent
ac53776ee4
commit
8fc07485f4
1 changed files with 5 additions and 0 deletions
5
count-lines-of-code
Executable file
5
count-lines-of-code
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
E=/tmp/exclude-from-cloc
|
||||
echo -e 'kitty/wcwidth9.h\nkitty/unicode-data.h\nkitty/gl.h\nkitty/glfw.c\nkitty/glfw.h' > $E
|
||||
cloc --exclude-list-file=$E kitty
|
||||
rm $E
|
||||
Loading…
Add table
Add a link
Reference in a new issue