Menu

[r28]: / bin / setjavaClasspathDynamide.sh  Maximize  Restore  History

Download this file

32 lines (27 with data), 765 Bytes

 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
30
31
#!/bin/sh
#Example -- you can run this to get the classpath:
#
# /bin/sh bin/setjavaClasspathDynamide.sh -outputclasspath
if [ -z "$DYNAMIDE_HOME" ] ; then
echo ERROR: DYNAMIDE_HOME not set
exit 1
fi
if [ -f "$HOME/.dynamide.local.sh" ] ; then
if [ "$1" = "-verbose" ]; then
echo Using .dynamide.local.sh from HOME directory: $HOME
fi
. $HOME/.dynamide.local.sh
else
if [ -f "$DYNAMIDE_HOME/bin/.dynamide.local.sh" ] ; then
echo Using .dynamide.local.sh from directory $DYNAMIDE_HOME/bin
. $DYNAMIDE_HOME/bin/.dynamide.local.sh
fi
fi
export CLASSPATH=`$perl $DYNAMIDE_HOME/bin/setjavaClasspathDynamide.pl`
if [ "$1" = "-outputclasspath" ]; then
echo $CLASSPATH
fi
if [ "$1" = "-verbose" ]; then
echo
echo $CLASSPATH
fi
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.