head	1.1;
access;
symbols;
locks
	dfk:1.1; strict;
comment	@# @;


1.1
date	96.07.04.03.03.24;	author dfk;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@#!/bin/csh -f
#
# extract-iop: extract a list of IOP statistics 

foreach i ( configs/8*.1280.{cache.nosort,general.sort}*.contig.16 )
 foreach j ( $i/results/*16.16.*sim*)
  echo $j
  statgraph -m -f $j |& grep '^\[IOP'
 end
end
@
