You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feel free to add a link to your own projects in a PR.
20
42
43
+
## Main options
44
+
45
+
*`DisableStdioBuffer` - Discard Stdio, rather than buffering into memory
46
+
*`StreamStdio` - Stream stderr and stdout to the console, useful for debugging and testing
47
+
*`Shell` - Use bash as a shell to execute the command, rather than exec a binary directly
48
+
*`StdOutWriter` - an additional writer for stdout, useful for mutating or filtering the output
49
+
*`StdErrWriter` - an additional writer for stderr, useful for mutating or filtering the output
50
+
*`PrintCommand` - print the command to stdout before executing it
51
+
21
52
## Example of exec without streaming to STDIO
22
53
23
54
This example captures the values from stdout and stderr without relaying to the console. This means the values can be inspected and used for automation.
0 commit comments