linux下如何杀死2个进程

发布于 2024-08-21 05:25:35 字数 73 浏览 6 评论 0原文

我有两个程序同时运行(在Linux中),其中一个在后台运行。当我按 ctrl+c 时,提示符返回,但进程似乎仍在继续。如何杀死它们?

I have two programs running simultaneously ( in linux ) , with one running at the background. When i press ctrl+c , the prompt returns , but the processes seem to continue.. How to kill them both ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

成熟稳重的好男人 2024-08-28 05:25:35

使用pkill myprocess。如果没有,请使用 ps -ef 检查后台进程的 pid,然后使用 kill -9。您还可以使用 pgrep myprocess 来查找这些 pid。

use pkill myprocess. If not, check the pid of the background process using ps -ef, then use kill -9 <pid>. you can also use pgrep myprocess to find those pids.

深海夜未眠 2024-08-28 05:25:35

通过作业控制也可以看到与当前 shell 相同的后台进程。例如,在 bash 中输入“jobs”,您可以杀死 %1。

Background processes started from the same as your current shell are visible through job control as well. In bash type "jobs" and you can kill %1 for example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文