mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
7 lines
116 B
Bash
7 lines
116 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Put instructions to run the runtime
|
|
mv $1 $1.java
|
|
filename=$1.java
|
|
shift
|
|
java $filename "$@"
|