- or download this
@services = ( { serviceid => '1',
name => 'servicea',
...
name => 'serviceb',
host => [ qw( hostc ) ] },
);
- or download this
foreach my $svc ( @services ) {
# list of hosts: @{ $svc->{host} }
# name: $svc->{name}
}
- or download this
%services
= ( 'servicea' => { serviceid => '1',
...
'serviceb' => { serviceid => '2',
host => [ qw( hostc ) ] },
);