21 lines
406 B
Bash
21 lines
406 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
src="/home/rob/code/nodescore/www/8/svg/"
|
||
|
|
||
|
cd ../magick/
|
||
|
|
||
|
#./create_svg.py --output=emma --sections=1 --instrument=emma
|
||
|
|
||
|
cp /var/www/magick.kiben.net/m/output/emma/svg/*.svg $src
|
||
|
|
||
|
cd $src
|
||
|
|
||
|
for f in *.svg ; do mv $f ${f#???}; done
|
||
|
count=-1 ;for i in [0-7]*.svg ; do count=$((count+1)) ;mv $i $count.svg ; done
|
||
|
|
||
|
cd /home/rob/code/nodescore
|
||
|
|
||
|
./svgmods.sh
|
||
|
./musicfilegenerator.sh
|
||
|
./ss2thumb.sh
|