我经常需要在编程期间终止一个进程。

我现在的做法是:

[~]$ ps aux | grep 'python csp_build.py'
user    5124  1.0  0.3 214588 13852 pts/4    Sl+  11:19   0:00 python csp_build.py
user    5373  0.0  0.0   8096   960 pts/6    S+   11:20   0:00 grep python csp_build.py
[~]$ kill 5124

如何自动提取进程id并在同一行中杀死它?

是这样的:

[~]$ ps aux | grep 'python csp_build.py' | kill <regex that returns the pid>

当前回答

试着用

ps aux | grep 'python csp_build.py' | head -1 | cut -d " " -f 2 | xargs kill

其他回答

通过关键字midori终止进程,例如:

kill sigterm $(pgrep -i midori)

ps -o uid,pid,cmd|awk '{if($1=="username" && $3=="your command") print $2}'|xargs kill -15

使用-C ps命令的标志

- c cmdlist 按命令名选择。它选择的进程 可执行文件名称在cmdlist中给出。

第一个例子,简单的命令

所以如果你用标准shebang运行你的脚本,并调用他们的名字:

/path/to/csp_build.py

你可能会找到他们

ps -C csp_build.py

So

kill $(ps -C csp_build.py ho pid)

也许足够了。

第二种情况,搜索CMD

更强烈一点,但仍然比这个SO问题的大多数其他答案快得多…

如果你不知道这是谁,或者你只是匆匆走过

python csp_build.py
python3 csp_build.py
python /path/to/csp_build.py

你可以通过以下方式找到它们:

ps -C python,python3,csp_build.py who pid,cmd | grep csp_build.py

然后使用sed:

kill $(ps -C python,python3,csp_build.py who pid,cmd |
    sed -ne '/csp_build.py/s/^ *\([0-9]\+\) .*$/\1/p')

我用这个来杀死Firefox当它被脚本抨击和cpu抨击:) 把“Firefox”换成你想要的应用。我在Bash shell - OS X 10.9.3达尔文。

kill -Hup $(ps ux | grep Firefox | awk 'NR == 1 {next} {print $2}' | uniq | sort)

我开始使用这样的东西:

kill $(pgrep 'python csp_build.py')