make
.bash
cargo install rmake
bash
rmake
bash
rmake {name of task}
bash
rmake --help
```toml [env] MYENV01 = "Hello,"
[variables] MYVAR02 = "World!"
[[tasks]] description = "anything" name = "world" dependson = ["hello"] command = [ "ECHO {{MYVAR_02}}", ]
[[tasks]] description = "anything" name = "hello" dependson = [] command = [ "!MKDIR .tmp", # SAFE with "!" "!DEL /S /Q .tmp\*", # SAFE with "!" "ECHO %MYENV_01%", ] ```