I have a script like this:

#!/bin/sh
exec ./cmd1&
exec ./cmd2

If I kill the script only cmd2 is killed, cmd1 keeps running. Is it possible that both processes quit automatically?

link|improve this question

feedback

migrated from serverfault.com Jan 19 at 13:44

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 2 down vote accepted

do not do second exec (the first one is redundant, too) but leave the shell wait for it. killing the shell may kill the commands; if not - then:

    trap 'kill -15 $kids; exit 143' TERM
    cmd1 &
    kids=$!
    cmd2 &
    kids="$kids $!"
    wait
link|improve this answer
that doesn't work for me, but thank you for the answer (I'm on OS X, things are a little different here...) – mbert Jan 18 at 0:20
tested on OS X - how do you kill? – yarek Jan 18 at 0:33
I would like to run this in an application bundle. When I click on it, the dock icon keeps hopping forever, and all I can do is force quit it. – mbert Jan 19 at 12:21
I belive trap '...' EXIT will suite better. – ony Jan 19 at 13:48
1  
You don't need a for loop, you can pass multiple PIDs to kill. – tripleee Jan 19 at 14:14
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.