mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 00:05:56 +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
|