mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 02:15:54 +00:00
6 lines
94 B
Bash
6 lines
94 B
Bash
|
#!sh
|
||
|
for i in *cso; do
|
||
|
(echo -n 'static '
|
||
|
xxd -i $i | grep -v '_len = ') > ${i%cso}inc
|
||
|
done
|