-
Notifications
You must be signed in to change notification settings - Fork 202
Support redirecting stdout/stdin/stderr to/from other sources #43
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
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.
camilo
commented
Dec 28, 2015
LGTM, but needs tests.
cc @fbogsany
marco-souza
commented
May 20, 2024
Hey, @jtolio 👋
Are you still working on it?
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. 😁
jtolio
commented
May 20, 2024
ha, please take over @marco-souza
- Base PR: Shopify#43
FYI, PR #135 was created! 🚀
Please, take a look when you can 🙏🏼
Update: I closed this ticket and replaced this lib with another better-maintained lib, as the project seems abandoned.
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.