alunizaje/android/tools/jdk-osx/bin/jmc

21 lines
405 B
Plaintext
Raw Normal View History

2016-11-03 00:05:36 +01:00
#!/bin/sh
#Resolve the full path to this script
RELDIR=$(dirname "$0")
pushd "$RELDIR" > /dev/null
JDKBINDIR=`pwd -P`
popd > /dev/null
RELDIR="$JDKBINDIR/../lib/missioncontrol/Java Mission Control.app/Contents/MacOS"
pushd "$RELDIR" > /dev/null
JMCAPPDIR=`pwd -P`
popd > /dev/null
# Escaping whitespace
JMCAPPDIR=$(echo $JMCAPPDIR | sed 's/ /\\ /g')
CMD="$JMCAPPDIR/jmc $*"
#echo $CMD
eval $CMD
exit