Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Obtaining a return code

by chromatic (Archbishop)
on May 21, 2000 at 08:11 UTC ( [id://13982]=note: print w/replies, xml ) Need Help??


in reply to Obtaining a return code

The special variable $? holds the status of the backtick or system operation. If you're really curious, you can do: my $sig_number = ($? & 255); to see which signal killed the process, if any. It's not all that useful, though, for system(), as you can get the return value anyway (as turnstep points out below).

Which return code are you expecting?

Replies are listed 'Best First'.
RE: Answer: Obtaining a return code
by turnstep (Parson) on May 21, 2000 at 20:36 UTC
    But $? is the same thing as just reading the return value yourself, right? At any rate, $? on my Win32 system doesn't show anything except "0", no matter what is in the system call:
    $rv = system("uname"); print "Returned a $rv and \$? is $?\n"; $rv = system("ver"); print "Returned a $rv and \$? is $?\n";

    Unix produces:

    SunOS
    Returned a 0 and $? is 0
    Returned a 65280 and $? is 65280
    

    Windoze produces:

    Bad command or file name
    Returned a 0 and $? is 0
    
    Windows 98 [Version 4.10.1998]
    
    Returned a 0 and $? is 0
    

Log In?
Username:
Password:

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

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

    No recent polls found