我在学期中尝试这个:
/tmp ps x | grep -m1 firefox | cut -d' ' -f1 | kill -KILL
kill: not enough arguments
如何管道pid杀死?
我试过这个,没有工作
/tmp ps x | grep -m1 firefox | kill -KILL $(cut -d' ' -f1)
cut: -: Input/output error
kill: not enough arguments
答案 0 :(得分:1)
您可以使用xargs。这将读取command1的输出并将其用作运行command2的参数:
command1 | xargs command2
在你的情况下
ps x | grep -m1 firefox | cut -d' ' -f1 | xargs kill -KILL