Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: how to store the output of a 'system' call to a variable

by serf (Chaplain)
on Jan 04, 2006 at 10:53 UTC ( [id://520844]=note: print w/replies, xml ) Need Help??


in reply to how to store the output of a 'system' call to a variable

If you are wanting to run a command specifically to capture its output and it gives more than a few lines you may find this way works well for you:
my $script = "./script1.pl"; open(SCRIPT1, "$script|") || die "Can't run '$script': $!\n"; while(<SCRIPT1>) { $results[0]{result} .= $_; } close(SCRIPT1);
or perhaps more flexibly:
my $script = "./script1.pl"; my @script_output; open(SCRIPT1, "$script|") || die "Can't run '$script': $!\n"; while(<SCRIPT1>) { chomp(); push (@script_output, $_); } close(SCRIPT1); $results[0]{result} = join($/, @script_output);
Both of which will report to you if there is a problem running it (with the reason why) and will put the output which you require into the variable you want to use.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-16 04:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found