Results 1 to 2 of 2
Hallo,
i want to know when a prozess was terminated with a SIGTERM. I want to use a csh Script who knows the PID of the prozess. If the Prozess ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-19-2004 #1Just Joined!
- Join Date
- Apr 2004
- Posts
- 1
catching singnals in a shellscript from a other prozess
Hallo,
i want to know when a prozess was terminated with a SIGTERM. I want to use a csh Script who knows the PID of the prozess. If the Prozess was killed the script should do somthing but if the prozess dies himself the script should do somthing else.
Is there sombody who know a way to catch the signals who was sendet to an other Prozess (Not parent or child).
Thanks
- 05-05-2004 #2Just Joined!
- Join Date
- Mar 2004
- Posts
- 30
You could execute the program using a scripting language like perl and then check the child error.
# run some command
$processList = `ps -ax`;
# check $? for child error
if($?) {
#do this
}
The child error would be the returned status of the wait system call... so you could determine how the process ended.
Hope this is correct... hope it helps.
Richard


Reply With Quote
