Loading...
利用Linux lsof组件监控某个进程的网络连接状态import time import os while True: time.sleep(1) # 输入lsof命令过滤进程号 result = os.popen("lsof -i | grep 51851").read() # 如果有结果则写入并中断循环,否则继续 if res...