你能帮我校正代码片段吗?
我要列出类型为eq xyz 但不使用名称服务器的服务器 。
our %SERVERS = (
"rajesh1" => {type => xyz , sha => ram },
"rajesh2" => {type => xyz , sha => sita },
"rajesh3" => {type => xyz , named => ["raa"]},
"rajesh4" => {type => xxx , named => ["rajjaj"]},
);
while ( my $mServer = each(%SERVERS) )
{
if ("$SERVERS{$mServer}{type}" eq "xyz" && !"$SERVERS{$mServer}{named}" )
{
print "Name of the server is $mServer
";
}
}
预期成果:
rajesh1 rajesh2