2013-02-22 158 views
1

我將服務器的託管提供程序從Windows Server切換到Linux Debian,我需要幫助將我的Run.bat轉換爲可執行的shell腳本。需要幫助將批處理文件轉換爲linux shell腳本

在Windows批處理文件:

java -cp bin; deps/mail.jar; deps/xstream.jar; deps/xpp3-1.1.4c.jar; 
deps/scheduling.jar -server server.Server 

當我保存這個作爲一個shell腳本不正確,當我「運行在終端」,外殼只是打開並立即關閉運行。

+0

[Possibilities](http://stackoverflow.com/questions/5164516/convert-batch-file-to-linux-shell-script) – gks 2013-02-22 03:58:03

回答

1

在Linux中,隔膜是:而不是;,所以嘗試這個:

$ java -cp bin:deps/mail.jar:deps/xstream.jar:deps/xpp3-1.1.4c.jar:deps/scheduling.jar -server server.Server 

複製命令沒有$。 $用於表示該命令屬於linux shell。