Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      my $keys = keys %{$ips{$_}}; 
      print "$_: $keys nodes\n"  
    }
    
  2. or download this
    
    use strict;
    ...
    foreach ( keys %ips ) { 
      print "$_: $ips{$_} nodes\n"  
    }