linux – 使用netstat结合ps查找进程ID

前端之家收集整理的这篇文章主要介绍了linux – 使用netstat结合ps查找进程ID前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想使用netstat找到进程ID,并查看使用ps运行此进程的时间.我目前有两个单独的命令来执行此操作.如何使用一个命令执行此操作?

netstat -anp | grep http | grep ESTABLISHED | awk {'print $7}' | awk -F '/' {'print $1'}

和:

ps -eo pid,uid,ruser,etime | grep someuser
最佳答案
for i in `netstat -anp | grep http | grep ESTABLISHED | awk {'print $7}' | awk -F '/' {'print $1'} | uniq` ; do ps -eo pid,etime | grep $i ; done
原文链接:https://www.f2er.com/linux/440368.html

猜你在找的Linux相关文章