AJP/DiSLProject2022/run.sh

9 lines
126 B
Bash
Raw Permalink Normal View History

2023-01-02 09:46:59 +00:00
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <Name of main class>"
exit;
fi
$JAVA_HOME/bin/java -cp build/app.jar $*