Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: pass subroutine value to scalar

by dpuu (Chaplain)
on Jan 12, 2006 at 02:46 UTC ( #522605=note: print w/replies, xml ) Need Help??


in reply to pass subroutine value to scalar

The subroutine as your have coded it doesn't actually have a meaningful return value. The problem is that the "system" command does not capure the output text of the command. Perl has a different operator for that:
sub ctrl { return qx/xmmsctrl print %T/; } my $ctrl = ctrl();
The qx operation could also be written using backticks:
sub ctrl { return `xmmsctrl print %T`; }
--Dave
Opinions my own; statements of fact may be in error.

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2023-09-26 21:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?