mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
Use process substitution to avoid an explicit temporary file
This commit is contained in:
@@ -1,5 +1,2 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
E=/tmp/exclude-from-cloc
|
cloc --exclude-list-file <(echo -e 'kitty/wcwidth9.h\nkitty/unicode-data.h\nkitty/gl.h\nkitty/glfw.c\nkitty/glfw.h') kitty
|
||||||
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
|
|
||||||
|
|||||||
Reference in New Issue
Block a user