1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-15 08:03:13 +00:00
re3/src/extras/shaders/makeinc.sh
2020-08-13 18:14:24 +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