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!"

[[tasks]] description = "anything" name = "default" dependson = ["common"] command = [ "ECHO %MYENV_02%", ]

[[tasks]] description = "anything" name = "common" dependson = [] command = [ "ECHO %MYENV_01%", ] ```