linux下如何杀死2个进程
我有两个程序同时运行(在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
pkill myprocess
。如果没有,请使用ps -ef
检查后台进程的 pid,然后使用kill -9
。您还可以使用 pgrep myprocess 来查找这些 pid。use
pkill myprocess
. If not, check the pid of the background process usingps -ef
, then usekill -9 <pid>
. you can also usepgrep myprocess
to find those pids.通过作业控制也可以看到与当前 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.