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"

[[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" ] ```