如何在bash中组合“lsof -i:port”和“kill pid”

时间:2015-10-13 11:39:48

标签: linux bash shell terminal command

如何在bash中组合这两个命令:

lsof -i :port
kill pid

第一个返回我要杀死的PID以释放端口。第二个杀死返回的PID。

我这样做是因为我不知道如何在OSX上的Netbeans IDE中杀死一个码头网络服务器。有办法吗?

2 个答案:

答案 0 :(得分:9)

您可以使用$():

kill $(lsof -t -i:port)

答案 1 :(得分:0)

您可以使用

kill -9 `lsof -t -i:port`