如何获取管道另一端的pid?
我想知道管道另一端的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.