in reply to Re: hash element as file handle
in thread hash element as file handle

print { $files{$1} } works, as does using a temp scalar (my $tmp = $files{$1}; print $tmp "...).

Thanks!