Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Check if "System" was succesful

by vaevictus (Pilgrim)
on Apr 09, 2004 at 13:42 UTC ( [id://343903]=note: print w/replies, xml ) Need Help??


in reply to Check if "System" was succesful

but for a system related WTDI,
my $result = system("copy bleh blah"); #system returns opposite ... IIRC if(! $result) { print "success\n"; } else { print "oh no!\n"; }

Replies are listed 'Best First'.
Re: Re: Check if "System" was succesful
by BazB (Priest) on Apr 09, 2004 at 16:20 UTC

    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://343903]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-24 10:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found