Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
05-23-2007, 06:11 AM
|
#1
|
Member
Registered: Aug 2005
Posts: 40
Rep:
|
kill the process invoked from a shell script, when the script is killed
I have one shell script, through which i am invoking a process (e.g. the shell script conatins only one line, wish). When i kill the shell script from some other shell, Only the shell script is killd but the process invoked by the shell script is not killed. I want the process also to be killed. Can some one help me
|
|
|
05-23-2007, 06:37 AM
|
#2
|
Senior Member
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154
Rep:
|
there are couple of methods to do this, if you know the name of the running command you can kill it with the killall command, or use a tool like top to kill it, with top running press the k on your keyboard and then type in the pid number & press enter...
|
|
|
05-23-2007, 06:51 AM
|
#3
|
Member
Registered: Aug 2005
Posts: 40
Original Poster
Rep:
|
The top's k and process ID also kills only the shell but not the process invoked by it.
killall -9 <pid of the script> is not working.
|
|
|
05-23-2007, 07:04 AM
|
#4
|
Senior Member
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154
Rep:
|
reboot, unless you have a life threatening need to keep that PC running...
|
|
|
05-23-2007, 07:04 AM
|
#5
|
LQ Guru
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733
|
If you use killall, use the name of the script instead of the pid. Or use kill with the pid.
|
|
|
05-23-2007, 07:17 AM
|
#6
|
Senior Member
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897
Rep:
|
Maybe something like this:
Code:
#!/bin/bash
child=
function killChild() {
[ -n "$child" ] && kill $child
}
trap killChild 2 15
/path/to/your/single/command &
child=$!
wait $child
Yves.
Last edited by theYinYeti; 05-23-2007 at 07:19 AM.
|
|
|
05-23-2007, 08:01 AM
|
#7
|
Member
Registered: Aug 2005
Posts: 40
Original Poster
Rep:
|
Thanks U so much using the shell scripting, i can kill all the process. But -9 signal cannot be captured - i think that is a limitation.
|
|
|
05-23-2007, 10:46 AM
|
#8
|
Senior Member
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897
Rep:
|
Sure. However -9 is hardly a standard use of kill. Except in rare situations, you should use kill without -9.
Yves.
|
|
|
05-23-2007, 11:29 AM
|
#9
|
Member
Registered: Aug 2006
Location: Aberdeen, Scotland
Distribution: OpenBSD
Posts: 164
Rep:
|
you can't catch the kill -9 signal , i think its the only one. I learnt some stuff about process's today and i'm going to recommend beej's IPC guide for more information
http://beej.us/guide/bgipc/
|
|
|
All times are GMT -5. The time now is 11:22 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|