使用python识别本地进程和相关端口

时间:2016-07-05 06:46:59

标签: python shell

python或任何linux / unix语言是否都有一个库,允许它根据进程名称查找localhost上可用的端口?

我想识别服务名称为ssh的所有关联端口。

lsofnetstat psgrep似乎不是最有效的选择。

1 个答案:

答案 0 :(得分:0)

这让我得到了我需要的东西,谢谢。

ss -l -p -n | grep ",pid=`pgrep ssh`," | grep ::: | cut -d : -f 4