mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Use process substitution to avoid an explicit temporary file
This commit is contained in:
parent
8fc07485f4
commit
674d8f9650
1 changed files with 2 additions and 5 deletions
|
|
@ -1,5 +1,2 @@
|
|||
#!/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
|
||||
#!/bin/bash
|
||||
cloc --exclude-list-file <(echo -e 'kitty/wcwidth9.h\nkitty/unicode-data.h\nkitty/gl.h\nkitty/glfw.c\nkitty/glfw.h') kitty
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue