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
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,7 @@ type Result struct {
141
141
142
142
## Pipelining
143
143
144
-
Chain commands safely:
144
+
Chain commands safely (pipeline execution is cross-platform; the commands you choose must exist on that OS):
145
145
146
146
```go
147
147
out, err := execx.
@@ -151,7 +151,9 @@ out, err := execx.
151
151
Output()
152
152
```
153
153
154
-
Pipelines are explicit and deterministic.
154
+
Pipelines are explicit and deterministic. `PipeStrict` stops at the first failing stage and returns its error. `PipeBestEffort` still runs all stages, returns the last stage output, and surfaces the first error if any stage failed.
155
+
156
+
On Windows, use `cmd /c` or `powershell -Command` to access shell built-ins when needed.
0 commit comments