在Linux中,如果您/proc/<pid>/fd
经常进行挖掘,则会看到类似以下的输出:
lrwx------ 1 root root 64 Jul 30 15:14 0 -> /dev/null
lrwx------ 1 root root 64 Jul 30 15:14 1 -> /dev/null
l-wx------ 1 root root 64 Jul 30 15:14 10 -> pipe:[90222668]
lr-x------ 1 root root 64 Jul 30 15:14 11 -> pipe:[90222669]
l-wx------ 1 root root 64 Jul 30 15:14 13 -> pipe:[90225058]
lr-x------ 1 root root 64 Jul 30 15:14 14 -> pipe:[90225059]
如何获得有关打开的管道的更多信息,例如另一端是哪个进程?
/proc
速度很慢。有人可以提供更有效的解决方案吗?