Macros§
- new
- Macro to create a new
Sheller
instance. - run
- Macro to run a shell script.
It will panic if the script fails. - try_run
- Macro to try to run a shell script.
It will return aResult
. If the script fails, it will return anErr
. Otherwise, it will return anOk
.
Structs§
- Sheller
- Sheller is a builder for
std::process::Command
that sets the shell program and arguments.