#!/bin/sh

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

##
## $Revision: 10787 $
## $Id: groovysh 10787 2008-02-11 00:34:37Z 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
