Perl Hash

HI

I have a hash like this 

 $hashname->\{$filesystem\}->\{'fsname'\}=$filesystem;

 How to get the values from this multilevel hash.

Thanks in advance... :slight_smile:

I'm pretty sure you can just go:

$hashname{$filesystem}{'fsname'}

Is that what you meant?