Forked from atulsingh0/cleanup_abandoned_locks.sh
Last active
August 29, 2015 14:20
-
-
Save mishin/c06e16f1bbe3a85a2b5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # This file was generated by the xmeta commons-launcher maven plugin. | |
| # Do not edit this file directly. | |
| myPath=`dirname $0` | |
| case `uname` in | |
| CYGWIN*) # cygwin-specific stuff here | |
| myPath=`cygpath -w "$myPath"` | |
| ;; | |
| esac | |
| # . "$myPath/setupEnv.sh" | |
| java="/opt/IBM/InformationServer/ASBServer/apps/jdk/bin/java" | |
| if [ ! -x "$java" ] | |
| then | |
| java="java" | |
| fi | |
| "`which $java`" -cp "$myPath" LauncherBootstrap -executablename cleanup_abandoned_locks -launchfile launcher-metadata_services.xml cleanup_abandoned_locks "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment