make
.bash
cargo install rmake
bash
rmake
bash
rmake {name of task}
bash
rmake --help
``` [env] MYENV01 = "administrator@example.com" MYENV02 = "2147483647"
[[tasks]] description = "Hello, rmake!" name = "default" dependson = ["common"] command = [ ["echo", "%MYENV01%"], ["echo", "$MYENV_02"] ]
[[tasks]] description = "My Common Library" name = "common" dependson = [] command = [ ["echo", "%MYENV01%"], ["echo", "$MYENV_02"] ] ```