Help for this page

Select Code to Download


  1. or download this
                my (@commands,@matches,$ip);
                for (my $i=0; $i < @temp; $i++){ #process each subset
    ...
                $$DATA{$ip}->{commands} = \@commands;
                $$DATA{$ip}->{matches} = \@matches;
    
  2. or download this
                my ( @commands, @matches, $ip );
                for my $i ( 0 .. $#temp ) { #process each subset
    ...
                $$DATA->{ $ip }{ commands } = \@commands;
                $$DATA->{ $ip }{ matches } = \@matches;