Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Storing system grep's output to an array in perl

by vinoth.ree (Monsignor)
on Mar 07, 2013 at 11:32 UTC ( [id://1022206]=note: print w/replies, xml ) Need Help??


in reply to Storing system grep's output to an array in perl

system() executes the command specified but it doesn't capture the output of the command.

system() will return the exit status of the command as returned by the 'wait' call.

Update:

Use backtick(``) to capture the specified command's output.

my @array = `grep -i "top-" filename | awk '(print $3)'`;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found