Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Bugs list
- X-seq: zsh-workers 14852
- From: Andrej Borsenkow <Andrej.Borsenkow@xxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Bugs list
- Date: Mon, 11 Jun 2001 22:38:40 +0400
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <1010611165317.ZM23036@xxxxxxxxxxxxxxxxxxxxxxx>
Bart Schaefer wrote:
The known bugs in zsh are listed in the file Etc/BUGS.
This one is gone AFAIK:
When interrupting code like the following with ^C:
while true; do
sh -c '...'
done
if the `sh' is executing, zsh does not know that the sh received a ^C and
continues with the next iteration. This happens for any program which
handles the interrupt, then exits after tidying up; it does not happen for
zsh, which exits directly from the signal handler. The workaround is to
use ^Z which forks the shell and makes the loop a separate job, then kill
the suspended loop.
-andrej
Messages sorted by:
Reverse Date,
Date,
Thread,
Author