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 = "administrator@example.com" MYENV02 = "2147483647" MYENV03 = "true"

[[tasks]] description = "Hello, rmake!" name = "default task" dependson = [] command = [ ["echo", "%MYENV_02%"] ] ```