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