-
Notifications
You must be signed in to change notification settings - Fork 560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open input pipe FileHandle interferes with die+exit #294
Comments
From vallon@bear.com#!/usr/local/bin/perl5.005 -w use FileHandle; my $fh = new FileHandle; # close($fh) fixes it Exits with zero return code. Tested on perl5.00[245]. It appears that the implicit close of $fh is changing the exit code. * If 'find / -print', then exit code is 13 (SIGPIPE) My guess would be that $? from the close($fh) is being used as Perl's * find : SIGPIPE => $? == 13 => exit(13) => exit code 13. -Justin Perl Info
|
From @gsarOn Fri, 30 Jul 1999 10:12:28 EDT, Justin Vallon wrote:
Please try 5.005_58. I put in a fix for this. Sarathy |
Migrated from rt.perl.org#1117 (status was 'resolved')
Searchable as RT1117$
The text was updated successfully, but these errors were encountered: