mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 01:05:48 +02:00
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
|