scriptisto

Language-agnostic shebang interpreter for compiled languages

brewmacoslinux
Try with needOr install directly
Source

About

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

Commands

scriptisto

Examples

Create and run a Rust script with shebang$ scriptisto create hello.rs && ./hello.rs
Run a Go script directly as executable$ scriptisto new script.go && ./script.go
Execute a C++ script without manual compilation$ scriptisto create app.cpp && chmod +x app.cpp && ./app.cpp