# !/bin/sh
# 
#	This shell script will run the UIL Multiple Callbacks test
#	and redirect the output to the file 'multC.out'
#

echo ""
echo "Running UIL Multiple Callbacks test."
echo "Output will be redirected to the file multC.out."

echo "These are the results of the UIL Multiple Callbacks test:" > multC.out
echo "" >> multC.out
echo "" >> multC.out

multC >> multC.out

echo "UIL Multiple Callbacks test has completed."
echo ""

#
#  End Run script
#
