X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Jim Seymour <nntp.ff@thentao.com>
Subject:  Re: How do I kill a grandchild process from shell program?
Date:  Tue, 24 Oct 2006 11:12:50 -0700
Lines: 26
Message-ID: <ehll33$abl$1@sea.gmane.org>
References:  <ehjll0$4f7$1@sea.gmane.org> <ba40711f0610231749g114f3ed0r2300dfc31d3c04dd@mail.gmail.com>
Mime-Version:  1.0
Content-Type:  text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding:  7bit
User-Agent: Thunderbird 1.5.0.7 (Windows/20060909)
In-Reply-To: <ba40711f0610231749g114f3ed0r2300dfc31d3c04dd@mail.gmail.com>
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Lev Bishop wrote:
> On 10/23/06, Jim Seymour <nntp.ff@thentao.com> wrote:
> 
>> However, if things don't work fine, the background process sticks around
>> to plague me later.
>>
>> I'd like to end my main script by killing the background process (if
>> it's still around), but I'm having a helluva time figuring out HOW.
> 
> How about:
> $ killall <progname>

Thanks for the reply.  Unfortunately, "killall" is not part of my Cygwin 
installation - and I don't see which package contains it.

However, I may have solved my problem with this lovely mess:

    kill $!
    kill `ps | grep ocdremote | tr -s " " | cut -f2 -d " "`

The first "kill" stops the background bash process.  The second stops 
the utility in question.  Not as elegant as I'd hoped, but it seems to 
do the trick.

-- 
Jim Seymour


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

