D 中是否有 fork 和与子进程通信的示例?
如何在 D 中分叉并与子进程通信?
我想我正在寻找 http://erdani。 com/d/new-stdio/phobos-prerelease/std_process.html#pipeProcess 但pipeProcess似乎不在D2中。
我想执行一个子进程,并能够从其标准输出和标准错误读取,写入其标准输入并接收其退出及其退出代码的通知。
在 D 中执行此操作的最佳方法是什么?
谢谢,
克里斯。
How do you fork and communicate with a subprocess in D?
I think I'm pretty much looking for http://erdani.com/d/new-stdio/phobos-prerelease/std_process.html#pipeProcess but pipeProcess doesn't seem to be in D2.
I want to execute a child process and be able to read from its stdout and stderr, write to its stdin and receive notification of it exiting and its exit code.
What is the best way of doing this in D?
Thanks,
Chris.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最终这个功能将出现在 Phobos 中,但现在,这是我拼凑在一起的一个类: Pastebin 链接
你可以像这样使用它:
Eventually this functionality will be in Phobos, but for now, here's a class I tossed together: Pastebin link
You use it like this:
目前,与 C.pipe、fork、exec 中的方式相同。
不漂亮。
Currently, same way as you would in C. pipe, fork, exec.
Not pretty.