projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New directory tree, with preprocessor/ inside interpretor/.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
tools
/
faust2appls
/
faust2png
1
#!/bin/bash
2
3
faust2svg $@
4
5
for
d
in
$@
;
do
6
for
f
in
$d
-svg
/*
.svg
;
do
7
inkscape
-e
${f%.svg}
.png
-d
300
$f
8
rm
$f
9
done
10
mv
$d
-svg
$d
-png
11
done
12