mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-11 00:08:46 +02:00
8 lines
115 B
Bash
8 lines
115 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Put instructions to run the runtime
|
|
|
|
CODE=$(sed 's/ts$/js/' <<<"$1")
|
|
shift
|
|
|
|
node $CODE "$@"
|