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
I often find myself writing pipelines with various unix tools and it would be great if Task had native support for this. Adds a new attribute for a task called pipe that is mutually exclusive with cmds. It accepts an array of commands, same as cmds but it pipes stdout of each to stdin of the next.
An alternative would be to have a pipe: true option to enable this behaviour on cmds.
Description
I often find myself writing pipelines with various unix tools and it would be great if Task had native support for this. Adds a new attribute for a task called
pipe
that is mutually exclusive withcmds
. It accepts an array of commands, same ascmds
but it pipesstdout
of each tostdin
of the next.An alternative would be to have a
pipe: true
option to enable this behaviour oncmds
.It would look something like this.
The text was updated successfully, but these errors were encountered: