#!/bin/sh
#
# Abbot Suite script
# gil

# Source functions library
. /usr/share/java-utils/java-functions

# Source system prefs
if [ -f /etc/abbot.conf ] ; then
  . /etc/abbot.conf
fi

# Source user prefs
if [ -f $HOME/.abbotrc ] ; then
  . $HOME/.abbotrc
fi

# Configuration
MAIN_CLASS=abbot.editor.Costello
BASE_JARS="abbot abbot-example bsh2/bsh costello gnu-regexp jdom junit jgraph xerces-j2 xml-commons-apis" 

# Set parameters
set_jvm
set_classpath $BASE_JARS
set_flags $BASE_FLAGS
set_options $BASE_OPTIONS

run