make
.bash
cargo install rmake
bash
rmake
bash
rmake {name of task}
bash
rmake --help
``` [env] MYENV01 = "Hello," MYENV02 = "World!"
[[tasks]] description = "anything" name = "default" dependson = ["common"] command = [ "ECHO %MYENV_02%", ]
[[tasks]] description = "anything" name = "common" dependson = [] command = [ "ECHO %MYENV_01%", ] ```