How do I kill the last spawned background task in linux?
Example:
doSomething
doAnotherThing
doB &
doC
doD
#kill doB
????
|
How do I kill the last spawned background task in linux? Example:
|
|||||||||||||||||
|
|
There's a special variable for this in bash:
$! expands to the PID of the last process executed in the background. |
|||||||||
|
|
You can kill by job number. When you put a task in the background you'll see something like:
That
To see a list of job numbers use the
|
|||
|
|
|
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.
Example usage:
|
|||
|
|
|
skill doB "skill" is a version of the kill command that lets you select one or multiple processes based on a given criteria. |
|||
|
|
|
Just use the killall command: killall taskname for more info and more advanced options, type "man killall". |
|||||
|
|
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 |
||||
|
|