Support redirecting stdout/stdin/stderr to/from other sources#43
Open
jtolio wants to merge 1 commit intoShopify:mainfrom
Open
Support redirecting stdout/stdin/stderr to/from other sources#43jtolio wants to merge 1 commit intoShopify:mainfrom
jtolio wants to merge 1 commit intoShopify:mainfrom
Conversation
Like os/exec's Cmd object, it is sometimes useful to be able to control where and how the child program is interacting with the world. By doing this, we can now support building lua shells over telnet or other things.
|
LGTM, but needs tests. cc @fbogsany |
|
Hey, @jtolio 👋 I need to get the Lua output execution for one of my projects, and this PR may solve the problem. If you don't have the time to work on the tests, let me know and I can take care of it. 😁 |
Author
|
ha, please take over @marco-souza |
3 tasks
marco-souza
added a commit
to marco-souza/go-lua
that referenced
this pull request
May 20, 2024
- Base PR: Shopify#43
|
FYI, PR #135 was created! 🚀 Update: I closed this ticket and replaced this lib with another better-maintained lib, as the project seems abandoned. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Like os/exec's Cmd object, it is sometimes useful to be able to control where and how the child program is interacting with the world.
By doing this, we can now support building lua shells over telnet or other things.