Hi all,

I have 2 hashes, the keys are a unique field.  Hashes are built like this:

open (INPUTFH, <allusers.chr>) or die "Can't find allusers.chr file!\n";
    while ( $line = <INPUTFH> ) {    
#set values here here...
}
push ( @{ $NS{$BV_NF} }, $NS_Name, $NS_Cont, $W_Name, $V_FID, $G_P, $GWD, 
$NS_Creation, $NS_Expiration, $NS_Modified, $NS_Disabled, $GWI );

I need to grab each key ($BV_NF) from the hash and compare to each key in second hash 
(%BV) and print certain values from each ($NS{value}[2], $BV{$value}[8]) if there is a 
match.  Any advice?



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to