-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
add output to stream of lines (seq string) ? #63
Comments
Hey @jkone27, thank you for raising an issue. |
yes i think this could be useful to chain the printing of executing command while a command is still running or is not exiting,
one example case is when running python scripts you might want to exit the virtualenvironment always at the end, so i need to run a "closing" python command even if the running program is interrupted... but this is a very special case i guess. |
Is this the wrong issue for your comment? 😄 |
Anyways, I think that is a special case, yes. |
Thoughts on this: |
would be useful to process the output as stream, like less or more commands, so as a stream of lines, and to have control to interrupt or modify the behaviour of code based on content
e.g.
dotnet test
|> break if containing 'Exception' so it will stop at the first error in tests instead of running the full suiteThe text was updated successfully, but these errors were encountered: