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

Question on qx

by narashima (Beadle)
on Nov 03, 2006 at 20:49 UTC ( [id://582160]=perlquestion: print w/replies, xml ) Need Help??

narashima has asked for the wisdom of the Perl Monks concerning the following question:

Revered Monks,
What is return value of qx ? I tried doing the following but I did not get any value for $status.
$status = qx/cat new1 >new/; print "value of status is $status \n";
The output of the code above is:

"Value of status is "

Could anyone enlighten me please.

Thanks

Replies are listed 'Best First'.
Re: Question on qx
by BUU (Prior) on Nov 03, 2006 at 20:53 UTC
    The output of qx// is whatever the program inside's STDOUT is. In your specific case you send all of the program's STDOUT to a file, so there is none left for perl to read.
      if BUU's explanation wasn't enough, perhaps perlop can help
        If you're looking for the return code of the command you're running, you can use system().

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-20 03:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found