Skip to content
space2 edited this page Jan 17, 2012 · 1 revision
#!/bin/sh

MC=Main
DIR=$HOME/bin
JAR=$DIR/chkbugreport.jar
CP=$JAR

if [ ! -f $JAR ]; then
  echo "For this script to work properly, copy the jar file to $JAR"
  exit 1
fi

java -classpath $CP $MC "$@"