vote up 1 vote down star

How do I kill the last spawned background task in linux?

Example:

doSomething
doAnotherThing
doB &
doC
doD
#kill doB
????
flag

2  
How can this be not programming related? Bash programming is not programming? – flybywire Oct 26 at 13:14
1  
Belongs on superuser IMHO. – Hasturkun Oct 26 at 13:21
This is in the overlap region between SO and SU, but I think it fits better here on SO. My criteria for thinking this way is that if @flybywire is doing this in a script, it's programming. If he just wanted to do it from the command line I'd say it belongs on SU. – Bill the Lizard Oct 26 at 19:58
Shell scripting is programming too. – cletus Oct 28 at 1:12

8 Answers

vote up 10 vote down check

There's a special variable for this in bash:

kill $!

$! expands to the PID of the last process executed in the background.

link|flag
vote up 3 vote down

You can kill by job number. When you put a task in the background you'll see something like:

$ ./script &
[1] 35341

That [1] is the job number and can be referenced like:

$ kill %1
$ kill %%  # Most recent background job

To see a list of job numbers use the jobs command. More from man bash:

There are a number of ways to refer to a job in the shell. The character % introduces a job name. Job number n may be referred to as %n. A job may also be referred to using a prefix of the name used to start it, or using a substring that appears in its command line. For example, %ce refers to a stopped ce job. If a prefix matches more than one job, bash reports an error. Using %?ce, on the other hand, refers to any job containing the string ce in its command line. If the substring matches more than one job, bash reports an error. The symbols %% and %+ refer to the shell's notion of the current job, which is the last job stopped while it was in the foreground or started in the background. The previous job may be referenced using %-. In output pertaining to jobs (e.g., the output of the jobs command), the current job is always flagged with a +, and the previous job with a -. A single % (with no accompanying job specification) also refers to the current job.

link|flag
vote up 1 vote down

The following command gives you a list of all background processes in your session, along with the pid. You can then use it to kill the process.

jobs -l

Example usage:

$ sleep 300 &
$ jobs -l
[1]+ 31139 Running                 sleep 300 &
$ kill 31139
link|flag
vote up 0 vote down

You need its pid... use "ps -A" to find it.

link|flag
vote up 0 vote down
killall doB

Of course this will kill all processes with that name.

link|flag
-1 I don't want to kill all processes with that name, but just the one the script has just spawned. – flybywire Oct 26 at 13:17
vote up 0 vote down

Just use the killall command:

killall taskname

for more info and more advanced options, type "man killall".

link|flag
I think killall is a bit aggressive when you actually have easy access to the PID. And dangerous, too, especially if you're root – Dave Vogt Oct 26 at 13:20
vote up 0 vote down

skill doB

"skill" is a version of the kill command that lets you select one or multiple processes based on a given criteria.

link|flag
vote up 0 vote down

Dont take my answer to harsh but... is there a reason for that Background process. The famous kill command can achieve what you want... but just "killing" the process seems to me like a quick solution, instead of so called "clean" solution.

Just my 2 cents

link|flag

Your Answer

Get an OpenID
or

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