#! /bin/bash
# BUILDALL Copyright (2008) Gwyneth Morrison
# Script to process multiple MS scripts in a batch
>WARNINGS
for file in `cat $1`
do
	echo processing $file
	mstopsql $file
        if [ $? != 0 ] 
	then
		exit 2
	fi
done
