如何获取管道另一端的pid?

发布于 2024-10-26 16:41:06 字数 561 浏览 21 评论 0原文

我想知道管道另一端的pid。如果是 Linux,我可以像这些命令一样匹配 ls -l /proc/SELF_PID/fd/0 的 id。

[root@host ~]# command1 | command2 &

I've known command2's PID = 5912.

[root@host ~]# ls -l /proc/5912/fd/0 
lr-x------  1 root root 64 Mar 25 18:00 /proc/5912/fd/0 -> pipe:[540748072]
[root@host ~]# ls -l /proc/[0-9]*/fd/1 | grep 'pipe:\[540748072\]'
l-wx------  1 root root 64 Mar 25 18:01 /proc/5911/fd/1 -> pipe:[540748072]
[root@host ~]# cat /proc/5911/cmdline 
vmstat12

Linux 上有更好的方法吗?或者如何进入 BSD 和其他操作系统?

我想知道是否有好的 CPAN 模块...

谢谢。

I want to know pid of the other side of the pipe. If Linux, I can match up the id of ls -l /proc/SELF_PID/fd/0 like these commands.

[root@host ~]# command1 | command2 &

I've known command2's PID = 5912.

[root@host ~]# ls -l /proc/5912/fd/0 
lr-x------  1 root root 64 Mar 25 18:00 /proc/5912/fd/0 -> pipe:[540748072]
[root@host ~]# ls -l /proc/[0-9]*/fd/1 | grep 'pipe:\[540748072\]'
l-wx------  1 root root 64 Mar 25 18:01 /proc/5911/fd/1 -> pipe:[540748072]
[root@host ~]# cat /proc/5911/cmdline 
vmstat12

Are there better ways on Linux? or How to get on BSD and the other OS?

And I want to know if there is a good CPAN module...

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心在旅行 2024-11-02 16:41:06

在 Perl 中,进程可以使用特殊变量 $$ 获取自己的 PID。

如果有一对管道或套接字,每个进程可以将自己的 PID 发送到管道或套接字中,以供其他进程读取。

此外,父母通常通过创建孩子的 PID 的系统调用来了解他们的孩子的 PID。

In Perl a process can get its own PID with the special variable $$

If you have a pair of pipes, or a socket, each process could just send its own PID into the pipe or socket to be read by the other process.

Also, parents know the PIDs of their children usually through the system call creating them.

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