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
@@ -328,7 +328,6 @@ Filters are methods on an existing pipe that also return a pipe, allowing you to
328
328
|[`RejectRegexp`](https://pkg.go.dev/github.com/bitfield/script#Pipe.RejectRegexp)| lines not matching given regexp |
329
329
|[`Replace`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Replace)| matching text replaced with given string |
330
330
|[`ReplaceRegexp`](https://pkg.go.dev/github.com/bitfield/script#Pipe.ReplaceRegexp)| matching text replaced with given string |
331
-
|[`SHA256Sums`](https://pkg.go.dev/github.com/bitfield/script#Pipe.SHA256Sums)| SHA-256 hashes of each listed file |
332
331
|[`Tee`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Tee)| input copied to supplied writers |
333
332
334
333
Note that filters run concurrently, rather than producing nothing until each stage has fully read its input. This is convenient for executing long-running commands, for example. If you do need to wait for the pipeline to complete, call [`Wait`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Wait).
@@ -344,7 +343,6 @@ Sinks are methods that return some data from a pipe, ending the pipeline and ext
0 commit comments