#!/bin/sh

# goes through the nightly output files looking for errors
# runs at 8am...that gives the nightly jobs like 4 hours to work

# 2/12/97	T.Boss	creation
# 7/9/97	T.Boss	fixed to run out of /export/syb_ops

SWHOME="/export/syb_ops/swatch"
PATH=$PATH:$SWHOME:.;export PATH

cd /export/syb_ops/nightly

for name in `ls *.out`
do
   $SWHOME/swatch -c $SWHOME/swatchrc -f $name
done