forked from fesch/Structorizer.Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startStructorizerAgain
29 lines (26 loc) · 1.14 KB
/
startStructorizerAgain
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
################################################################################
#
# Author: Klaus-Peter Reimers
#
# Description: This script runs the application again
#
################################################################################
#
# Revision List
#
# Author Date Description
# ------ ---- -----------
# Klaus-Peter Reimers 2008.06.04 First Issue
# Bob Fisch 2006.06.06 Script modified to work within
# an Eclipse project
#
################################################################################
# changing into binary directory
echo "Changing into binary directory"
pushd bin
# run the application
echo "Running Structorizer"
java -cp .:../lib/AppleJavaExtensions.jar:../lib/freehep-graphics2d-2.1.1.jar:../lib/freehep-graphicsio-2.1.1.jar:../lib/freehep-io-2.0.2.jar:../lib/freehep-swing-2.0.3.jar:../lib/freehep-util-2.0.2.jar:../lib/freehep.jar Structorizer
# move back into the folder where we started
popd