Created
May 13, 2023 02:37
-
-
Save BlazerYoo/1639c691f1d8ddaed0c343aa2a780dd5 to your computer and use it in GitHub Desktop.
Compile and execute Java programs in one line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Compile Java program | |
javac $1.java | |
# Check if compilation was successful | |
if [ $? -eq 0 ]; then | |
# Execute Java program with command line arguments | |
java $1 "${@:2}" | |
# Check if program execution was successful | |
if [ $? -eq 0 ]; then | |
: | |
else | |
echo "Program execution failed." | |
fi | |
else | |
echo "Compilation failed." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment