in reply to Dereferencing Hash of Array
For each member of the array, you're printing the entire array? Seems like you'd want a dereferencing expression inside the loop there.foreach (@{$no_priv_matches{$group}}) { print "\t@{$no_priv_matches{$group}}\n"; }
|
|---|