#! /bin/sh
# Script to run Java-Cup.

if [ $# != 1 ] ; then
echo "Usage: javacup <file.cup>"
exit
fi

eval exec java java_cup.Main < $*
