vote up 3 vote down star

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?

flag

You should address the cause not the symptom. I.e. why do you end up with some many shells. – Dave C Jan 18 at 23:25

6 Answers

vote up 7 vote down check

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

link|flag
vote up 12 vote down

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

killall bash
link|flag
Doesn't this endanger the shell from which it is run? – Jonathan Leffler Jan 18 at 19:31
Also, this is linux specific. Older unixies had differnet symantics for "killall". – dmckee Jan 18 at 20:28
Um. Actuall it works in Mac OS X as well. – dmckee Jan 18 at 20:29
@Jonathan: Yes, if the shell the example is run from is a bash shell then it will be killed as well, from the question this appears to be the desired behavior. – Robert Gamble Jan 18 at 21:36
"appears to be the desired behavior": at least it is the one he asked for...which is not always what is actually desired... – dmckee Jan 18 at 23:22
show 1 more comment
vote up 1 vote down

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

# killall <name>
link|flag
vote up 7 vote down

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!

link|flag
Where are the codes for killall and kill in my comp for inspection? – Masi Jan 18 at 18:19
kill -l generally lists all signals. – Keltia Jan 18 at 19:13
HL, have you considered just reading man killall? – dmckee Jan 18 at 20:31
@Keltia, signals and kill(1) are completely irrelevant to this question/answer. – Dave C Jan 18 at 23:24
vote up 0 vote down

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.

link|flag
Well, if you're executing this from a bash shell (the default on OS X), you'll want to run those two commands in the opposite order. :-) – Ben Blank Jan 19 at 8:46
vote up 4 vote down

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.

link|flag
The Fish shell, probably a beta, consumes almost all of my CPU. It is shame as Fish is easy to use. I like the colours. – Masi Jan 19 at 17:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.