From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22307 invoked from network); 27 Sep 1999 20:05:43 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 27 Sep 1999 20:05:43 -0000 Received: (qmail 15192 invoked by alias); 27 Sep 1999 20:05:24 -0000 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 2623 Received: (qmail 15184 invoked from network); 27 Sep 1999 20:05:24 -0000 Sender: Stephane.Bausson@mail.dotcom.fr Message-ID: <37EFC0E3.6EE4978C@mail.dotcom.fr> Date: Mon, 27 Sep 1999 19:09:23 +0000 From: Stephane BAUSSON X-Mailer: Mozilla 4.5 [en] (X11; I; Linux 2.0.35 i586) X-Accept-Language: en MIME-Version: 1.0 To: zsh-users@sunsite.auc.dk Subject: not killing apps started in a zsh Content-Type: multipart/alternative; boundary="------------48E8CA08439A8B9F0731F7B5" --------------48E8CA08439A8B9F0731F7B5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello I just beging to use zsh, I have noticed that zsh send the kill signal to all the applications started from this zsh, that is not the case with other shell. So I would like to know a parade to this. Thank you Stephane -- ``' (o o) -----------------oOO--(_)--OOo-------------------------------------- Stephane BAUSSON Home : 168, Av. de Muret - F-31300 Toulouse - France __o o Tel : +33 (0)5.62.21.22.04 ..._/\o_ _ \<,_ '<, Email: Stephane.Bausson@mail.dotcom.fr """"~~~~~" (_)/ (_) /> --------------------------Oooo-------------------------------------- oooO ( ) ( ) ) / \ ( (_/ \_) --------------48E8CA08439A8B9F0731F7B5 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hello

I just beging to use zsh, I have noticed that zsh send the kill signal to all the applications started
from this zsh, that is not the case with other shell. So I would like to know a parade to this.

Thank you

Stephane

--
                      ``'
                     (o o)
-----------------oOO--(_)--OOo--------------------------------------
 Stephane BAUSSON
 Home : 168, Av. de Muret - F-31300 Toulouse - France   __o      o
 Tel  : +33 (0)5.62.21.22.04              ..._/\o_    _ \<,_    '<,
 Email: Stephane.Bausson@mail.dotcom.fr  """"~~~~~"  (_)/ (_)   />
--------------------------Oooo--------------------------------------
                  oooO   (   )
                  (  )    ) /
                   \ (   (_/
                    \_)
  --------------48E8CA08439A8B9F0731F7B5-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22439 invoked from network); 27 Sep 1999 20:20:45 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 27 Sep 1999 20:20:45 -0000 Received: (qmail 16698 invoked by alias); 27 Sep 1999 20:20:24 -0000 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 2624 Received: (qmail 16691 invoked from network); 27 Sep 1999 20:20:24 -0000 Date: Mon, 27 Sep 1999 16:17:31 -0400 From: Clint Adams To: Stephane BAUSSON Cc: zsh-users@sunsite.auc.dk Subject: Re: not killing apps started in a zsh Message-ID: <19990927161731.A6564@dman.com> References: <37EFC0E3.6EE4978C@mail.dotcom.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0pre2i In-Reply-To: <37EFC0E3.6EE4978C@mail.dotcom.fr> > I just beging to use zsh, I have noticed that zsh send the kill signal > to all the applications started > from this zsh, that is not the case with other shell. So I would like to > know a parade to this. >>From zshoptions(1) HUP Send the HUP signal to running jobs when the shell exits. So you can put 'setopt nohup' in your startup files to avoid this behavior. Another solution is to 'disown' your jobs before exit.