Skip site navigation (1)Skip section navigation (2)
Date:      	Tue, 13 Oct 1998 13:01:42 -0700
From:      Cheryl DeMatteis <cdematt@rush.aero.org>
To:        freebsd-questions@FreeBSD.ORG
Cc:        steve@isi.edu
Subject:   trap in /bin/sh
Message-ID:  <199810132001.NAA01194@rush.aero.org>

next in thread | raw e-mail | index | archive | help
I'm having trouble with the trap command in /bin/sh on
FreeBSD 2.2.7-STABLE #0:

here's an example:

file: test.sh

      #! /bin/sh

      trap "echo hello" TERM

      ./loop.sh &

      echo "myself $$"
      echo "subshell $!"

      wait $!

file: loop.sh

      #! /bin/sh

      while [ 1 ] ; do
         echo "hello" > /dev/null
      done

When starting test.sh, I get no response when I kill -TERM either the
parent or the subshell.

This works on a Solaris box.

Thanks for any suggestions you might have.

Cheryl

-- 
Cheryl K. DeMatteis                      The Aerospace Corporation, M1/102
cdematt@aero.org                         Computer Science and Technology
(310)336-1189                            2350 E. El Segundo Blvd. 
(310)336-4402 (fax)                      El Segundo, CA 90245-4691	

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810132001.NAA01194>