mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2025-04-06 17:39:28 +00:00
7 lines
101 B
Bash
7 lines
101 B
Bash
#!sh
|
|
cd obj
|
|
for i in *cso; do
|
|
(echo -n 'static '
|
|
xxd -i $i | grep -v '_len = ') > ${i%cso}inc
|
|
done
|