Created
May 4, 2010 23:08
-
-
Save vinilios/390167 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Shell script for KDE launching CopperCore | |
DIRNAME=`dirname $0` | |
DIRNAME=`cd $DIRNAME; pwd` | |
PROGNAME=`basename $0` | |
# Add the CopperCore.properties to the class path | |
JBOSS_CLASSPATH="$DIRNAME:" | |
export JBOSS_CLASSPATH | |
# Setup file prefix for configuration | |
JAVA_OPTS="-Dcoppercore.prefix=$DIRNAME/ -Dccsi.configuration=$DIRNAME/ccsi.xml" | |
export JAVA_OPTS | |
# Launch JBoss | |
$DIRNAME/jboss-4.0.4.GA/bin/run.sh $* | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment