📌  相关文章
📜  如何监听 8080 端口运行的进程并杀死它 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:00.758000             🧑  作者: Mango

代码示例2
# shows information on Processes running on port 80 with PIDs
$: sudo lsof -i tcp:80

$: sudo lsof -t -i tcp:80 | sudo xargs kill