How to terminate script's process tree in Cygwin bash from bash script - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T01:04:47Zhttp://stackoverflow.com/feeds/question/523878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/523878/how-to-terminate-scripts-process-tree-in-cygwin-bash-from-bash-script2How to terminate script's process tree in Cygwin bash from bash scriptBarry Kelly2009-02-07T14:55:54Z2009-02-09T02:38:23Z
<p>I have a Cygwin bash script that I need to watch and terminate under certain conditions - specifically, after a certain file has been created. I'm having difficulty figuring out how exactly to terminate the script with the same level of completeness that Ctrl+C does, however.</p>
<p>Here's a simple script (called <strong><code>test1</code></strong>) that does little more than wait around to be terminated.</p>
<pre><code>#!/bin/bash
test -f kill_me && rm kill_me
touch kill_me
tail -f kill_me
</code></pre>
<p>If this script is run in the foreground, Ctrl+C will terminate both the <code>tail</code> and the script itself. If the script is run in the background, a <code>kill %1</code> (assuming it is job 1) will also terminate both <code>tail</code> and the script.</p>
<p>However, when I try to do the same thing from a script, I'm finding that only the <code>bash</code> process running the script is terminated, while <code>tail</code> hangs around disconnected from its parent. Here's one way I tried (<strong><code>test2</code></strong>):</p>
<pre><code>#!/bin/bash
test -f kill_me && rm kill_me
(
touch kill_me
tail -f kill_me
) &
while true; do
sleep 1
test -f kill_me && {
kill %1
exit
}
done
</code></pre>
<p>If this is run, the bash subshell running in the background is terminated OK, but <code>tail</code> still hangs around.</p>
<p>If I use an explicitly separate script, like this, it still doesn't work (<strong><code>test3</code></strong>):</p>
<pre><code>#!/bin/bash
test -f kill_me && rm kill_me
# assuming test1 above is included in the same directory
./test1 &
while true; do
sleep 1
test -f kill_me && {
kill %1
exit
}
done
</code></pre>
<p><code>tail</code> is still hanging around after this script is run.</p>
<p>In my actual case, the process creating files is not particularly instrumentable, so I can't get it to terminate of its own accord; by finding out when it has created a particular file, however, I can at that point know that it's OK to terminate it. Unfortunately, I can't use a simple <code>killall</code> or equivalent, as there may be multiple instances running, and I only want to kill the specific instance.</p>
http://stackoverflow.com/questions/523878/how-to-terminate-scripts-process-tree-in-cygwin-bash-from-bash-script/523934#5239341Answer by Adam Rosenfield for How to terminate script's process tree in Cygwin bash from bash scriptAdam Rosenfield2009-02-07T15:18:48Z2009-02-07T15:18:48Z<p><a href="http://unix.derkeiler.com/Newsgroups/comp.unix.shell/2004-05/1108.html" rel="nofollow">This script</a> looks like it'll do the job:</p>
<pre><code>#!/bin/bash
# Author: Sunil Alankar
##
# recursive kill. kills the process tree down from the specified pid
#
# foreach child of pid, recursive call dokill
dokill() {
local pid=$1
local itsparent=""
local aprocess=""
local x=""
# next line is a single line
for x in `/bin/ps -f | sed -e '/UID/d;s/[a-zA-Z0-9_-]\{1,\}
\{1,\}\([0-9]\{1,\}\) \{1,\}\([0-9]\{1,\}\) .*/\1 \2/g'`
do
if [ "$aprocess" = "" ]; then
aprocess=$x
itsparent=""
continue
else
itsparent=$x
if [ "$itsparent" = "$pid" ]; then
dokill $aprocess
fi
aprocess=""
fi
done
echo "killing $1"
kill -9 $1 > /dev/null 2>&1
}
case $# in
1) PID=$1
;;
*) echo "usage: rekill <top pid to kill>";
exit 1;
;;
esac
dokill $PID
</code></pre>
http://stackoverflow.com/questions/523878/how-to-terminate-scripts-process-tree-in-cygwin-bash-from-bash-script/524366#5243661Answer by Barry Kelly for How to terminate script's process tree in Cygwin bash from bash scriptBarry Kelly2009-02-07T19:04:55Z2009-02-07T19:04:55Z<p>Adam's link put me in a direction that will solve the problem, albeit not without some minor caveats.</p>
<p>The script doesn't work unmodified under Cygwin, so I rewrote it, and with a couple more options. Here's my version:</p>
<pre><code>#!/bin/bash
function usage
{
echo "usage: $(basename $0) [-c] [-<sigspec>] <pid>..."
echo "Recursively kill the process tree(s) rooted by <pid>."
echo "Options:"
echo " -c Only kill children; don't kill root"
echo " <sigspec> Arbitrary argument to pass to kill, expected to be signal specification"
exit 1
}
kill_parent=1
sig_spec=-9
function do_kill # <pid>...
{
kill "$sig_spec" "$@"
}
function kill_children # pid
{
local target=$1
local pid=
local ppid=
local i
# Returns alternating ids: first is pid, second is parent
for i in $(ps -f | tail +2 | cut -b 10-24); do
if [ ! -n "$pid" ]; then
# first in pair
pid=$i
else
# second in pair
ppid=$i
(( ppid == target && pid != $$ )) && {
kill_children $pid
do_kill $pid
}
# reset pid for next pair
pid=
fi
done
}
test -n "$1" || usage
while [ -n "$1" ]; do
case "$1" in
-c)
kill_parent=0
;;
-*)
sig_spec="$1"
;;
*)
kill_children $1
(( kill_parent )) && do_kill $1
;;
esac
shift
done
</code></pre>
<p>The only real downside is the somewhat ugly message that bash prints out when it receives a fatal signal, namely "Terminated", "Killed" or "Interrupted" (depending on what you send). However, I can live with that in batch scripts.</p>
http://stackoverflow.com/questions/523878/how-to-terminate-scripts-process-tree-in-cygwin-bash-from-bash-script/526996#5269966Answer by andrew for How to terminate script's process tree in Cygwin bash from bash scriptandrew2009-02-09T02:38:23Z2009-02-09T02:38:23Z<p>/bin/kill (the program, not the bash builtin) interprets a <em>negative</em> PID as “kill the process group” which will get all the children too.</p>
<p>Changing</p>
<pre><code>kill %1
</code></pre>
<p>to</p>
<pre><code>/bin/kill -- -$$
</code></pre>
<p>works for me.</p>