File: stridetune-dat.bash

package info (click to toggle)
zfec 1.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 524 kB
  • sloc: python: 2,022; ansic: 892; haskell: 229; sh: 22; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 228 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

DAT=stridetune.dat
rm -f $DAT
for F in benchresults/comp_0-stride_*; do
    NUM=${F:27}
    for M in `grep "^N: " benchresults/comp_0-stride_$NUM | cut -d':' -f10-` ; do
        echo "$NUM $M" >> $DAT
    done
done