Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Created May 13, 2023 02:37
Show Gist options
  • Save BlazerYoo/1639c691f1d8ddaed0c343aa2a780dd5 to your computer and use it in GitHub Desktop.
Save BlazerYoo/1639c691f1d8ddaed0c343aa2a780dd5 to your computer and use it in GitHub Desktop.
Compile and execute Java programs in one line
#!/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