Adds an example usecase for args

This commit is contained in:
Nadja Reitzenstein 2022-01-17 20:00:40 +01:00
parent 9fbacc171b
commit 73162d278f

View File

@ -188,7 +188,9 @@
-- If you need to pass more arguments to the command you can use the `args` key in
-- `params` as is done with the actor `Bash`
module = "Process",
params = { cmd = "./examples/actor.py", }
-- the `args` are passed in front of all other parameters so they are best suited to
-- optional parameters like e.g. the verboseness
params = { cmd = "./examples/actor.py", args = "-vvv" }
},
DoorControl2 = {
module = "Process",