mirror of
https://github.com/engineer-man/piston.git
synced 2025-06-08 19:26:25 +02:00
8 lines
125 B
Bash
8 lines
125 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Put instructions to run the runtime
|
|
mv $1 $1.java
|
|
filename=$1.java
|
|
shift
|
|
javac $filename
|
|
java $1 "$@"
|