#!/bin/csh -f
#
# significant-all - run 'significant' on each config directory
#     'improve' must have been run on the config directories first
#   only 'general' directories should be listed
set usage='usage: significant-all [config]...'
#
# Part of
#              The STARFISH Parallel file-system simulator
#        (Simulation Tool for Advanced Research in File Systems)
# 
#                               David Kotz
#                           Dartmouth College
#                              Version 2.0
#                              January 1995
#                          dfk@cs.dartmouth.edu

if ($#argv == 0) then
    echo $usage
    exit 1
endif

foreach i ($*)
    echo $i
    significant $i/results/*.thruput > $i/results/significance
end
