RE: Found interesting opportunity

2011-11-19 Thread harish behl
Hey Friend!I remembered hearing about a quick and easy solution this was my free ride ive been crowned with success dont hesitate trying this outhttp://divisis.com/profile/72JamesWatson/";>http://divisis.com/profile/72JamesWatson/see you later

Manipulating reference to array of array references

2011-11-19 Thread Mohan L
Dear all, #!/usr/bin/env perl #dummy.pl use strict; use warnings; use Data::Dumper; my $ref_to_AoA = [ [ "fred", "barney",undef,"pebbles", "bambam", "dino", ], [ "homer",undef,"bart",undef, "marge", "maggie", ], [ "george", "jane",undef, "elroy",undef,"judy", ], ];

Re: Manipulating reference to array of array references

2011-11-19 Thread Shlomi Fish
Hi Mohan, On Sat, 19 Nov 2011 23:51:19 +0530 Mohan L wrote: > Dear all, > > #!/usr/bin/env perl > #dummy.pl > use strict; > use warnings; > use Data::Dumper; > > my $ref_to_AoA = [ > [ "fred", "barney",undef,"pebbles", "bambam", "dino", ], > [ "homer",undef,"bart",undef, "marge

Re: Manipulating reference to array of array references

2011-11-19 Thread Dr.Ruud
On 2011-11-19 19:21, Mohan L wrote: But What I want is, I want to replace all 'undef' to a string 'foo'. Unless you really want to change your data, use map(). -- Ruud -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://l

Re: is this ssh happenign in parallel? [SOLVED]

2011-11-19 Thread Rajeev Prasad
the issue was very easily resolved when i discovered Parallel::ForkManager following works wonderfully  (excerpt): ... ... my $pm = Parallel::ForkManager->new(10); ...     foreach $host (@allhosts) {         $pm->start($host) and next;         my ($MFSSH) = Net::OpenSSH->new($host,