LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 05-23-2007, 06:11 AM   #1
kskkumar
Member
 
Registered: Aug 2005
Posts: 40

Rep: Reputation: 15
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
 
Old 05-23-2007, 06:37 AM   #2
Okie
Senior Member
 
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154

Rep: Reputation: 187Reputation: 187
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...
 
Old 05-23-2007, 06:51 AM   #3
kskkumar
Member
 
Registered: Aug 2005
Posts: 40

Original Poster
Rep: Reputation: 15
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.
 
Old 05-23-2007, 07:04 AM   #4
Okie
Senior Member
 
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154

Rep: Reputation: 187Reputation: 187
reboot, unless you have a life threatening need to keep that PC running...
 
Old 05-23-2007, 07:04 AM   #5
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
If you use killall, use the name of the script instead of the pid. Or use kill with the pid.
 
Old 05-23-2007, 07:17 AM   #6
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
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.
 
Old 05-23-2007, 08:01 AM   #7
kskkumar
Member
 
Registered: Aug 2005
Posts: 40

Original Poster
Rep: Reputation: 15
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.
 
Old 05-23-2007, 10:46 AM   #8
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
Sure. However -9 is hardly a standard use of kill. Except in rare situations, you should use kill without -9.

Yves.
 
Old 05-23-2007, 11:29 AM   #9
Indiestory
Member
 
Registered: Aug 2006
Location: Aberdeen, Scotland
Distribution: OpenBSD
Posts: 164
Blog Entries: 1

Rep: Reputation: 30
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/
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
kill process script adnanm Linux - Newbie 3 03-02-2007 12:30 PM
Shell Script to kill a process automaticaly brazilian_user Programming 11 06-12-2006 09:09 PM
why my script die itself when I try to kill a process?? jaimese Linux - Newbie 4 10-27-2005 05:50 AM
how do i kill a process from inside a bash script? mikaelo Programming 4 05-28-2004 08:51 AM
Kill a process launched by a shell script gsbarry Programming 7 01-06-2004 02:09 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:21 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration