Welcome to the new Linux Foundation Forum!
run.bat -> Shell bash script Translation needed
in Command Line
I'd like to translate this
@ECHO OFF
title jvm
echo jvm
echo Newest client running
JAVA -Xmx500m EGUI
into bash shell script please , thanks.
0
Comments
#!/bin/bash
echo "jvm"
echo 'Newset Client Running"
/usr/bin/java -Xmx500m EGUI
--
I've neglected the title since that would make it more complicated setting the PROMPT_COMMAND var.