Monday, 19 August 2013

I need to convert a batchfile to a linux shell script

I need to convert a batchfile to a linux shell script

I had something on windows that I would run through a windows batchfile.
The code was:
@echo off
title Server
java -Xmx800m -cp
bin;deps/poi.jar;deps/mysql.jar;deps/mina.jar;deps/slf4j.jar;deps/slf4j-nop.jar;deps/jython.jar;log4j-1.2.15.jar;
server.Server
start Run-Server.bat
pause
I want to convert this to linux since I am moving it to a linux system. So
I need it in .sh of course, how would I do that?

No comments:

Post a Comment