blob: f2681e51240433a32354d2c925ccdc031c12e86e (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ -z ${CLASSPATH:=""} ] ; then
CLASSPATH=GL4JInstaller.jar
else
CLASSPATH=GL4JInstaller.jar:${CLASSPATH}
fi
export CLASSPATH
exec java -Dhttp.proxyHost=192.168.0.1 -Dhttp.proxyPort=3128 GL4JInst
|