Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个程序同时运行(在 linux 中),其中一个在后台运行。当我按 ctrl+c 时,提示返回,但进程似乎仍在继续.. 如何杀死它们?
使用pkill myprocess. 如果没有,请使用 来检查后台进程的 pid ps -ef,然后使用kill -9 <pid>. 您还可以使用pgrep myprocess来查找这些 pid。
pkill myprocess
ps -ef
kill -9 <pid>
pgrep myprocess
通过作业控制也可以看到与当前 shell 相同的后台进程。例如,在 bash 中键入“jobs”,您可以杀死 %1。