openrocket/run.sh

18 lines
326 B
Bash
Raw Normal View History

2010-07-22 07:21:37 +00:00
#!/bin/bash
#
# This script runs the version of OpenRocket compiled by Eclipse from
# the bin/ directory. You can provide Java arguments and OpenRocket
# arguments.
#
JAVAOPTS=""
while echo "$1" | grep -q "^-" ; do
JAVAOPTS="$JAVAOPTS $1"
shift
done
2024-02-22 19:49:55 +01:00
java -cp $JAVAOPTS info.openrocket.swing.startup.Startup "$@"
2010-07-22 07:21:37 +00:00