in reply to FileHandles in a Hash
I tried to see if enclosing the file handle within curlies for reading with the diamond <> operator might work:print {FH_hash{$foo}} $line_out;
but that does not help. Using the readline function is really the right solution.while (<{FH_hash{$foo}}>) { #...
|
|---|