summaryrefslogtreecommitdiff
path: root/bin/floall.sh
blob: 36f7119abbc9851038529b9b10121afd162e1c98 (plain)
1
2
3
4
5
6
7
#!/bin/bash
shift 1
        
for file in "$@"; do
    echo -n $file "-> "
    (cd generated; ../bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
done