mirror of
https://github.com/halpz/re3.git
synced 2025-04-25 03:57:45 +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
|