First cleaning step in "dsp_files" directory.
[Faustine.git] / interpretor / faust-0.9.47mr3 / benchmark / bench.sh
1 #!/bin/bash
2 AOPT="-b 1024 -p 3 -d hw:0"
3 DST=results-$(date +%y%m%d.%H%M%S)
4
5 echo "Faust ALSA Benchmark : " $AOPT > $DST
6 uname -a >> $DST
7 date >> $DST
8 for d in *dir; do
9 for f in $d/*; do
10 if [ -x $f ]; then
11 $f $AOPT >> $DST
12 fi
13 done
14 done