-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it possible to pipe utilities #59
Comments
Does this boil down to letting functions return an Elixir representation instead of printing the result and returning
Maybe we want to think of specific scenarios where pipe-ability is handy like cat + grep. Is there anything else? |
I suppose that I regularly pipe output when using Fwiw, I prototyped this feature a couple years ago in the |
Ah wrapping the result in a standardized struct, nice! I think pipe-ability will be a huge appeal to Elixir programmers. Also if you yourself want to do the piping all the time, that is a good reason to implement the feature since you are one of the Nerves heavy users. |
I could inherit your work if you rebase it on the latest main. There seem to be some major merge conflicts. |
I rebased the |
At a shell prompt, it's really convenient to be able to pipe the output from one command into another. The current toolshed commands don't let you do this. Here's an example that would be nice to support:
The
refactor
branch has a start at implementing this.The text was updated successfully, but these errors were encountered: