Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Pipe Error Trapping

by dpuu (Chaplain)
on Aug 24, 2004 at 16:13 UTC ( [id://385434]=note: print w/replies, xml ) Need Help??


in reply to Pipe Error Trapping

When opening a command to a pipe, the open command will only fail if the command you're trying to run (gzcat) doesn't exist. You need to check if the command found an error, after it started running.

The solution is to check the return value of other functions -- specifically, the close function:

open IN, "cat foo|" or die "failed to open: $!"; while (<IN>) { print } close IN or die "failed to close: $!";
--Dave
Opinions my own; statements of fact may be in error.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://385434]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 11:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found