6 lines
169 B
Bash
Executable File
6 lines
169 B
Bash
Executable File
#!/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
|