2011-10-19 20 views
17

में बैकटिक का उपयोग कर रहा बैश में निम्न कर सकते हैं निष्पादित हो रही है? इस तरह कुछ:एक आदेश की वापसी मान पर्ल

$output=`command` 
$retcode=??? 
+1

जब आपने कोशिश की तो क्या हुआ? :-) गंभीरता से, बस ऐसा कुछ करने का प्रयास यहां एक प्रश्न पूछने से कहीं ज्यादा तेज होगा। –

उत्तर

21

आप $? चर (जैसे खोल में) पढ़ सकते हैं। man perlvar

$?  The status returned by the last pipe close, backtick ("``") command, successful call to wait() or waitpid(), or from the 
       system() operator. This is just the 16-bit status word returned by the traditional Unix wait() system call (or else is made up 
       to look like it). Thus, the exit value of the subprocess is really ("$? >> 8"), and "$? & 127" gives which signal, if any, the 
       process died from, and "$? & 128" reports whether there was a core dump. (Mnemonic: similar to sh and ksh.) 

       Additionally, if the "h_errno" variable is supported in C, its value is returned via $? if any "gethost*()" function fails. 

       If you have installed a signal handler for "SIGCHLD", the value of $? will usually be wrong outside that handler. 

       Inside an "END" subroutine $? contains the value that is going to be given to "exit()". You can modify $? in an "END" 
       subroutine to change the exit status of your program. For example: 

        END { 
         $? = 1 if $? == 255; # die would make it 255 
        } 

       Under VMS, the pragma "use vmsish 'status'" makes $? reflect the actual VMS exit status, instead of the default emulation of 
       POSIX status; see "$?" in perlvms for details. 

       Also see "Error Indicators". 
0

और Perl 5.10 के बाद से से, आपके पास ${^CHILD_ERROR_NATIVE} है।

http://perldoc.perl.org/perl5100delta.html#New-internal-variables से:

${^CHILD_ERROR_NATIVE}

यह चर देशी स्थिति पिछले पाइप पास से वापस लौटे देता है, बैकटिक आदेश, सफल कॉल() या waitpid() प्रतीक्षा करने के लिए, या से सिस्टम() ऑपरेटर। विवरण के लिए perlvar देखें।

संबंधित मुद्दे