标签: python shell
python或任何linux / unix语言是否都有一个库,允许它根据进程名称查找localhost上可用的端口?
我想识别服务名称为ssh的所有关联端口。
ssh
lsof,netstat ps或grep似乎不是最有效的选择。
lsof
netstat
ps
grep
答案 0 :(得分:0)
这让我得到了我需要的东西,谢谢。
ss -l -p -n | grep ",pid=`pgrep ssh`," | grep ::: | cut -d : -f 4