Merge remote-tracking branch 'origin/rewrite' into rewrite
This commit is contained in:
commit
66f45f11f2
8
dump-query.sh
Executable file
8
dump-query.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
mysql -D soundfx -N -e "SELECT name, hex(src) FROM sounds" > out
|
||||||
|
split --additional-suffix=.row -l 1 out
|
||||||
|
for filename in *.row; do
|
||||||
|
name=`grep -oP '^(.+)(?=\t)' $filename`
|
||||||
|
col=`awk -F '\t' '{print $2}' "$filename"`
|
||||||
|
echo $col > "$filename.hex"
|
||||||
|
xxd -r -p "$filename.hex" "$name.opus"
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user