source: trunk/stridetune-dat.bash

Last change on this file was 307b550, checked in by Ramakrishnan Muthukrishnan <ram@…>, 9 years ago

zfec: rearrange files

  • Property mode set to 100755
File size: 228 bytes
Line 
1#!/bin/bash
2
3DAT=stridetune.dat
4rm -f $DAT
5for F in benchresults/comp_0-stride_*; do
6    NUM=${F:27}
7    for M in `grep "^N: " benchresults/comp_0-stride_$NUM | cut -d':' -f10-` ; do
8        echo "$NUM $M" >> $DAT
9    done
10done
Note: See TracBrowser for help on using the repository browser.