1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-03-23 16:25:07 +00:00
re3/src/extras/shaders/makeinc.sh
2020-08-11 18:40:04 +02:00

6 lines
94 B
Bash

#!sh
for i in *cso; do
(echo -n 'static '
xxd -i $i | grep -v '_len = ') > ${i%cso}inc
done