如何一次杀死 Unix 中的所有 shell?

发布于 2024-07-12 05:25:28 字数 108 浏览 9 评论 0原文

随着时间的推移,我的 Mac 变得越来越慢。 原因是我的贝壳数量巨大,例如 Bashes 和 Fishes。 每个shell都有不同的PID。 一颗颗杀炮弹太麻烦了。 怎么才能一次性杀掉他们呢?

My Mac becomes slow over time. The reason is the huge amount of my shells, such as Bashes and Fishes. Each shell has different PID. Killing shells one by one is too cumbersome. How can I kill them at once?

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

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

发布评论

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

评论(6

浮华 2024-07-19 05:25:28

killall 命令可以终止具有给定名称的所有进程:

killall bash

The killall command can kill all processes with a given name:

killall bash
只等公子 2024-07-19 05:25:28

如果他们拒绝,请尝试“killall bash”或“killall -9 bash”。

Try 'killall bash' or 'killall -9 bash' if they resist that.

伪心 2024-07-19 05:25:28

根据其他答案,常用的命令是 killall

请注意,在某些版本的 UNIX(例如 DEC Unix)上,此命令实际上会杀死所有进程。

在使用 UNIX 之前,请确保您了解它的行为!

As per other answers, the usual command is killall.

Note though that on some versions of UNIX (e.g. DEC Unix) this command literally kills all processes.

Do make sure that you know which behaviour your UNIX has before using it!

时间你老了 2024-07-19 05:25:28

我强烈怀疑你的初步诊断。 在 Unix 中,非活动进程不占用资源。 它没有被调度,它的内存被换出等等。如果出现速度慢的问题,很可能还有其他原因。 跑步是第一步。

I strongly doubt your initial diagnosis. In Unix, an inactive process does not take resources. It is not scheduled, its memory is swapped out, etc. If there is a problem of slowness, it probably has another cause. Running top is the first step.

薄荷港 2024-07-19 05:25:28

知道可执行文件的文件名吗? 您可以在许多 Unix 系统上使用“killall”。

# killall <name>

Know the filename of the executable? You can use "killall " on many Unix systems.

# killall <name>
煮酒 2024-07-19 05:25:28

我认为你不可能一次杀死所有的贝壳。 你必须使用许多killall,分别针对每个Shell,就像Rjamestaylor上面所说的那样:

killall bash
killall fish

等等。

I think that you cannot kill all your Shells at once. You have to use many killalls, separately to each Shell like Rjamestaylor says above:

killall bash
killall fish

And so on.

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