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
@@ -290,9 +291,11 @@ Filters are methods on an existing pipe that also return a pipe, allowing you to
290
291
|[`Basename`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Basename)| removes leading path components from each line, leaving only the filename |
291
292
|[`Column`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Column)| Nth column of input |
292
293
|[`Concat`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Concat)| contents of multiple files |
294
+
|[`DecodeBase64`](https://pkg.go.dev/github.com/bitfield/script#Pipe.DecodeBase64)| input decoded from base64 |
293
295
|[`Dirname`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Dirname)| removes filename from each line, leaving only leading path components |
294
296
|[`Do`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Do)| response to supplied HTTP request |
295
297
|[`Echo`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Echo)| all input replaced by given string |
298
+
|[`EncodeBase64`](https://pkg.go.dev/github.com/bitfield/script#Pipe.EncodeBase64)| input encoded to base64 |
296
299
|[`Exec`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Exec)| filtered through external command |
297
300
|[`ExecForEach`](https://pkg.go.dev/github.com/bitfield/script#Pipe.ExecForEach)| execute given command template for each line of input |
298
301
|[`Filter`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Filter)| user-supplied function filtering a reader to a writer |
@@ -337,6 +340,7 @@ Sinks are methods that return some data from a pipe, ending the pipeline and ext
0 commit comments