Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: how to save result in multiple files using for loop in perl

by Rudolf (Pilgrim)
on Aug 27, 2012 at 22:28 UTC ( [id://990075]=note: print w/replies, xml ) Need Help??


in reply to how to save result in multiple files using for loop in perl

for looping through the array, you dont really need the index unless your doing something special with the data, I am assuming what you want to do but for your loop at the end here is what I suggest:

close FILE;#dont forget to close your file for(my $i=0;$i<scalar(@dude);$i++){ system("ssh a.AS1 tracerout $dude[$i] > file $i.txt"); }

not sure why you used the + sign, maybe your looking for the . that connects strings ? and your use of $0 is also confusing because it is the path to the perl script itself.. this could not be used as an index. possibly you ment to say $dude[$o] which would make a lot more sense. but your problem is that the correct way to index an array is by putting it into scalar context ( $dude[$i] ) because the bit of information your taking from the array is flat data you begin it with a dollar sign instead of the @.

FIXED: length(@dude) to scalar(@dude) thanks jethro

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-03-29 12:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found