adding a test case
[IRC.git] / Robust / src / Benchmarks / Prefetch / avg.sh
1 #!/bin/sh
2
3 for file in `ls runlog/*.txt`
4 do
5   echo -n $file 
6   cat $file | grep -v "^Command" | awk '{sum += $1} END {print " "sum/NR}' 
7 done