1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ "":
{ "type": "export"
, "target": "_"
, "doc": ["A glorified hello-world example"]
, "flexible_config": ["NAME"]
, "config_doc": {"NAME": ["The name to say hello to"]}
}
, "_":
{ "type": "generic"
, "arguments_config": ["NAME"]
, "outs": ["greeting.txt"]
, "cmds":
[ { "type": "join"
, "$1":
[ { "type": "join_cmd"
, "$1":
[ "echo"
, "Hello"
, {"type": "var", "name": "NAME", "default": "world"}
]
}
, " > greeting.txt"
]
}
]
}
}
|