I need to convert a .sh file to a .bat file so that it can run in windows. I was wondering if there is a way to do this?
Here is the code I want to convert:
export ANDROID_SDK=C:\Users\Spencer Von Der Ohe\Downloads\adt-bundle-windows-x86_64-20140702\sdk # # export HERE=${PWD} export DALVIK_SDK=$HERE/../../ export JAVAFX_APP_DIR=$HERE/javafx/build/libs export PATH=$ANDROID_SDK/tools:$PATH export WORKDIR=$HERE/android export PACKAGE="org.javafxports.helloworld" export NAME="HelloAndroid" ./gradlew --info createProject -PDEBUG -PDIR=$WORKDIR -PPACKAGE=$PACKAGE -PNAME=$NAME \ -PANDROID_SDK=$ANDROID_SDK -PJFX_SDK=$DALVIK_SDK -PJFX_APP=$JAVAFX_APP_DIR -PJFX_MAIN=$PACKAGE.$NAME
Any help would be greatly appreciated.
user3558582
source share