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.
我知道这听起来像是一个常见问题,我应该能够在档案中找到答案。试着找了一些,但没有找到。所有的回复看起来都很冗长。任何 1-liner 都可以杀死 linux 中的一个进程,包括它的所有子进程。
如果它们都在同一个组中,请使用kill并传递组 id 的否定,如此处所示。
kill
kill $PID $(pgrep -P $PID)
pgrep -P列出所有孩子的PID(不是递归的)