scriptisto

Write scripts in compiled languages with shebang support.

brewmacoslinux
Try with needOr install directly
Source

About

Language-agnostic "shebang interpreter" to write scripts in compiled languages

Commands

scriptisto

Examples

write a rust script that runs like a shell script$ scriptisto create script.rs && ./script.rs
execute a go program as a command line script$ scriptisto create script.go && ./script.go
run a compiled language script with automatic compilation$ ./myscript.rs
write c++ code and execute it directly from terminal$ scriptisto create script.cpp && ./script.cpp
cache compiled binaries to speed up repeated script execution$ scriptisto create script.rs && ./script.rs && ./script.rs