Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Check if "System" was succesful

by BazB (Priest)
on Apr 09, 2004 at 16:20 UTC ( [id://343938]=note: print w/replies, xml ) Need Help??


in reply to Re: Check if "System" was succesful
in thread Check if "System" was succesful

The usual (and slightly more compact) way to check a system call is:

system( $cmd ) == 0 or die "System call failed: $!";

The " == 0" deals with the fact that system returns 0/false on success, not true like most perl functions.


If the information in this post is inaccurate, or just plain wrong, don't just downvote - please post explaining what's wrong.
That way everyone learns.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 09:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found