Welcome to the Linux Foundation Forum!

run.bat -> Shell bash script Translation needed

Options

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.

Comments

  • jnvilo
    jnvilo Posts: 10
    Options
    that would be something along the lines of

    #!/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.
  • Hurtboss
    Hurtboss Posts: 3
    Options
    Thanks you sooo much :) it totally worked mate , thanks heaps!

Categories

Upcoming Training