vote up 0 vote down star

I am running a java program from within a Bash script. If the java program throws an unchecked exception, I want to stop the bash script rather than the script continuing execution of the next command.

How to do this? My script looks something like the following:

#!/bin/bash

javac *.java

java -ea HelloWorld > HelloWorld.txt

mv HelloWorld.txt ./HelloWorldDir
flag

3 Answers

vote up 5 vote down check

Catch the exception and then call System.exit. Check the return code in the shell script.

link|flag
vote up 0 vote down

In agreement with Tom Hawtin,

To check the exit code of the Java program, within the Bash script:

#!/bin/bash 

javac *.java 

java -ea HelloWorld > HelloWorld.txt 

exitValue=$? 

if [ $exitValue != 0 ] 
then 
exit $exitValue 
fi 

mv HelloWorld.txt ./HelloWorldDir
link|flag
vote up 1 vote down
#!/bin/bash

function failure()
{
    echo "$@" >&2
    exit 1
}

javac *.java || failure "Failed to compile"

java -ea HelloWorld > HelloWorld.txt || failure "Failed to run"

mv HelloWorld.txt ./HelloWorldDir || failure "Failed to move"

Also you have to ensure that java exits with a non-zero exit code, but that's quite likely for a uncaught exception.

Basically exit the shell script if the command fails.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.