]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - ugw/data/throughput-dep.sh
57c839151a5856f92a700def96587b0156e16558
[can-benchmark.git] / ugw / data / throughput-dep.sh
1 #!/bin/bash
2
3
4 titles=$(awk '{print $1}' 150/result)
5 delays=$(seq 126 2 170)
6
7 for i in $delays; do
8     make -s -C $i
9 done
10
11 for t in $titles; do
12     exec > $t.dat
13     for i in $delays; do
14         echo "$i $(awk "/$t/ { print \$3, \$6 }" $i/result)"
15     done
16 done