Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: How to trap EXIT like in bash
- X-seq: zsh-users 20085
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Re: How to trap EXIT like in bash
- Date: Sat, 4 Apr 2015 11:48:59 -0700
- In-reply-to: <mfp7s2$c1r$1@ger.gmane.org>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <mfovfc$g3$1@ger.gmane.org> <1428167314.5875.2.camel@niobium.home.fifi.org> <mfp7s2$c1r$1@ger.gmane.org>
On Apr 4, 7:43pm, Thorsten Kampe wrote:
}
} elif [[ $shell = zsh ]]
} then
} trap "echo trapped; exit" INT HUP TERM
} fi
}
} Then Zsh does actually ignore the kill (TERM) signal.
It doesn't ignore the signal, but it may not run the trap either. You
need the trap on EXIT in there:
trap "echo trapped; exit" EXIT INT HUP TERM
That's because it matters whether the shell itself gets the signal, or
an external job that's been run *by* the shell gets the signal.
E.g. if I run a script that executes "sleep" and kill the sleep, the
TERM trap is not run but the EXIT trap will be. If I kill the shell
itself, the TERM trap is run but the EXIT trap is not.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author