mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-26 22:23:43 +00:00
5 lines
94 B
Bash
5 lines
94 B
Bash
#!sh
|
|
for i in *cso; do
|
|
(echo -n 'static '
|
|
xxd -i $i | grep -v '_len = ') > ${i%cso}inc
|
|
done
|