#!/bin/csh -f
#
# extract-ddio: extract a list of DDIO statistics 
#
# Part of
#              The STARFISH Parallel file-system simulator
#        (Simulation Tool for Advanced Research in File Systems)
# 
#                               David Kotz
#                           Dartmouth College
#                              Version 3.0
#                              January 1996
#                          dfk@cs.dartmouth.edu


foreach i ( configs/8*.1280.general.nosort.contig.16 )
 foreach j ( $i/results/*16.16.*sim*)
  echo $j
  simex -sim $j EmptyBlock FillBlock
 end
end
