Closed. This question is off-topic. It is not currently accepting answers. Learn more。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
如何终止从下面返回的所有进程?
我尝试过以下方法,但没有成功:
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
如何终止从下面返回的所有进程?
lsof -i
我尝试过以下方法,但没有成功:
lsof -i | awk '{print $2}' | kill
最佳答案
kill
将PID作为其参数,而当您使用管道时,它将转到kill
的stdin。
将它们作为参数传递:
kill $(lsof -i | awk '{print $2}')
关于linux - 如何杀死所有从“lsof -i”处理的文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21805695/
10-09 05:22