So I have been trying to convert my batch file to bash. I am running a linux (ubuntu) server and I want to run my game server off there instead of my work/play machine. Here is the bash
@echo off
title BSH 525
cd ../build
"C:\Program Files\Java\jdk1.7.0_03\bin\java.exe" -Xmx700m -server -cp .;../deps/*; net/com/codeusa/Server 43595
pause
and here is my attempt at the bash
!/bin/bash
cd ../build
java -server -cp .;../deps/*; ../net/com/codeusa/Server 43595
I keep getting errors such as files not found, or java is complaining about syntax