Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

Example:

doSomething
doAnotherThing
doB &
doC
doD
#kill doB
????
share|improve this question
5  
How can this be not programming related? Bash programming is not programming? – flybywire Oct 26 '09 at 13:14
3  
Belongs on superuser IMHO. – Hasturkun Oct 26 '09 at 13:21
1  
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 '09 at 19:58
2  
Shell scripting is programming too. – cletus Oct 28 '09 at 1:12

7 Answers

up vote 37 down vote accepted

There's a special variable for this in bash:

kill $!

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

share|improve this answer
This does not work for jobs backgrounded with ^Z. – polm23 Oct 12 '12 at 5:38
6  
@polm23; no, ^Z doesn't background jobs, it stops them. A subsequent bg does the actual 'backgrounding' (resumes execution in the background), and after that $! works as expected. – roe Oct 16 '12 at 14:39
Ah, of course. Thank you! – polm23 Oct 17 '12 at 1:18

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.

share|improve this answer

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
share|improve this answer

skill doB

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

share|improve this answer

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

share|improve this answer

Just use the killall command:

killall taskname

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

share|improve this answer
1  
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 '09 at 13:20

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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