Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
         'host' => {
               'jimmy.foo.com' => {
    ...
               },
          },
    };
    
  2. or download this
    my $hosts = $data->{'host'};
    foreach my $host ( keys %$hosts ) {
        my $duties = $hosts->{$host}->{'duty'};
    ...
            ? @$duties
            : $duties );
    }