#!/bin/csh -f
#
# print the average computation per chunk
#

extract -c $* | awk 'NF>0{sum+=$4;count++}\
END{print sum/count}'

