in reply to Hash/Array slice : how to exclude items?
use Data::Dumper; # ..... print Dumper [@hash{grep {$_ ne 'schema' && $_ ne 'log'} keys %hash}]; [download]
Dave