#!/bin/bash if [ "x$expeditee_filespace_home" = "x" ] ; then expeditee_filespace_home="$TMP/expeditee-filespace-home" fi echo "****" cygpath 2>/dev/null if [ $? != 0 ] ; then echo "* Detected runing in Cygwin environment => Changing expeditee_filespace_home to Windows native format" expeditee_filespace_home=`cygpath -w "$expeditee_filespace_home"` fi echo "* Lauching Expeditee.jar with expeditee.home=$expeditee_filespace_home" echo "****" java -classpath 'releases\Expeditee.jar' \ "-Dexpeditee.home=$expeditee_filespace_home" org.expeditee.gui.Browser