doit-cli 0.1.5

A CLI tool for managing your simple scripts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
env:
  NAME: world
tasks:
  hello:
    cmd: echo ${GREETING} $NAME!
    env:
      GREETING: "Hello"
  test:
    cmd: echo $2 $1
  i:
    cmd: cargo install --path . --force