About

Getting started

bash cargo install rmake

How to run the first task

bash rmake

How to run the specified task

bash rmake {name of task}

Show usage

bash rmake --help

rmake.toml is as

``` [env] MYENV01 = "Hello," MYENV02 = "World!"

[variables] MYVAR01 = "01" MYVAR02 = "02"

[[tasks]] description = "anything" name = "default" dependson = ["common"] command = [ "ECHO %MYENV02%", "ECHO {{MYVAR_02}}", ]

[[tasks]] description = "anything" name = "common" dependson = [] command = [ "ECHO %MYENV01%", "ECHO {{MYVAR_01}}", ] ```