#!/bin/sh

##############################################################################
##                                                                          ##
##  Groovy Shell script for UN*X                                            ##
##                                                                          ##
##############################################################################

##
## $Revision: 9962 $
## $Id: groovysh 9962 2007-12-21 21:34:55Z blackdrag $
##

GROOVY_APP_NAME=GroovyShell
DIRNAME=`dirname "$0"`
. "$DIRNAME/startGroovy"

if [ "x$OLDSHELL" != "x" ]; then
    startGroovy groovy.ui.InteractiveShell "$@"
else
    startGroovy org.codehaus.groovy.tools.shell.Main "$@"
fi
