D 中是否有 fork 和与子进程通信的示例?

发布于 2024-12-11 09:32:25 字数 357 浏览 0 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

櫻之舞 2024-12-18 09:32:25

最终这个功能将出现在 Phobos 中,但现在,这是我拼凑在一起的一个类: Pastebin 链接

你可以像这样使用它:

auto stream = new ProcessStream("ls -a");
// read, write, etc. from stream

Eventually this functionality will be in Phobos, but for now, here's a class I tossed together: Pastebin link

You use it like this:

auto stream = new ProcessStream("ls -a");
// read, write, etc. from stream
囍孤女 2024-12-18 09:32:25

目前,与 C.pipe、fork、exec 中的方式相同。

不漂亮。

Currently, same way as you would in C. pipe, fork, exec.

Not pretty.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文