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.