Skip to content

Instantly share code, notes, and snippets.

@mishin
Forked from atulsingh0/cleanup_abandoned_locks.sh
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save mishin/c06e16f1bbe3a85a2b5e to your computer and use it in GitHub Desktop.

Select an option

Save mishin/c06e16f1bbe3a85a2b5e to your computer and use it in GitHub Desktop.
#!/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