#!/bin/sh #Where log4j config file is LOG_CONFIG=../webApplication/WEB-INF/conf/log4j.properties #Where ARPs directory is ARP_DIR=../webApplication/arps if [ -n JAVA_HOME ] then $JAVA_HOME/bin/java -Dlog.config=$LOG_CONFIG -Darp.dir=$ARP_DIR -cp ../dist/shib-util.jar:../lib/log4j-1.2.3.jar edu.internet2.middleware.shibboleth.aa.arpUtil.ArpUtil $@ else echo "JAVA_HOME not set." fi