mirror of
https://github.com/engineer-man/piston.git
synced 2025-05-12 06:36:27 +02:00
5 lines
174 B
Text
Executable file
5 lines
174 B
Text
Executable file
cp /*.code .
|
|
name=$(cat $1 | grep -Eo 'public class ([A-Za-z0-9]+)' | cut -d' ' -f3)
|
|
mv $1 $name.java
|
|
timeout -s KILL 10 javac $name.java
|
|
timeout -s KILL 3 java $name ${@:3}
|