📌  相关文章
📜  杀死在端口 80 上运行的进程 - Shell-Bash 代码示例

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

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

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