zsh-users
 help / color / mirror / code / Atom feed
* Option PRINT_EXIT_VALUE doesn't always work as expected
@ 2010-07-30 13:02 Vincent Lefevre
  2010-07-31 21:53 ` Peter Stephenson
  0 siblings, 1 reply; 3+ messages in thread
From: Vincent Lefevre @ 2010-07-30 13:02 UTC (permalink / raw)
  To: zsh-users

Note: every test has been done under Debian/unstable (zsh 4.3.10).

I wonder why PRINT_EXIT_VALUE doesn't always work as expected:

ypig% setopt PRINT_EXIT_VALUE
ypig% false | head -n 1
zsh: exit 1     false | 
zsh: done       head -n 1
ypig% echo $pipestatus
1 0
ypig% false | true
ypig% echo $pipestatus
1 0

Also, if tst is a script that does "exit 141", I get as expected:

ypig% ./tst | head -n 1
zsh: exit 141   ./tst | 
zsh: done       head -n 1
ypig% echo $pipestatus
141 0

but if tst does "kill -PIPE $$", I get:

ypig% ./tst | head -n 1
ypig% echo $pipestatus
141 0

Actually, under some conditions, zsh knows that a process has been
killed with a signal:

ypig% svn log | cat | head -n 1
------------------------------------------------------------------------
svn: Write error: Broken pipe
zsh: exit 1       svn log | 
zsh: broken pipe  cat | 
zsh: done         head -n 1

How to make this always work?
Is this due to some bug in zsh?

-- 
Vincent Lefèvre <vincent@vinc17.net> - Web: <http://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-19 14:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-30 13:02 Option PRINT_EXIT_VALUE doesn't always work as expected Vincent Lefevre
2010-07-31 21:53 ` Peter Stephenson
2010-08-19 14:25   ` Vincent Lefevre

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).