projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial import.
[Faustine.git]
/
interpretor
/
faust-0.9.47mr3
/
tools
/
faust2appls
/
faust2graph
1
#!/bin/bash
2
for
f
in
$@
;
do
3
faust
-vec -tg
$f
-o
/
dev
/
null
4
dot
-Tpdf
$f
.dot
-o
$f
.graph.pdf
5
rm
$f
.dot
6
done
7