#!/bin/sh

##############################################################################
##                                                                          ##
##  Groovy Console script for UN*X                                          ##
##                                                                          ##
##############################################################################

##
## $Id: groovysh 9507 2007-11-28 12:15:25Z blackdrag $
##

DIRNAME=`dirname "$0"`
. "$DIRNAME/startGroovy11"

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

