>=item Complex filehandle references > my %filesystem; > my $filename = '/etc/shells'; > open $filesystem{$filename}, $filename > or die "can't open $filename: $!"; > print <$filesystem{$filename}>; > __END__ > GLOB{0xa042284} This goes hand-in-glove with the issue that you can't write: print $fh{$name} "data\n"; It's necessary but not sufficient to solve only the I part of this I/O difficulty. --tom
- RFC 34 (v3) Angle brackets should not be used for file... Perl6 RFC Librarian
- Re: RFC 34 (v3) Angle brackets should not be used... Tom Christiansen
- Re: RFC 34 (v3) Angle brackets should not be ... Jon Ericson
- Re: RFC 34 (v3) Angle brackets should not... Tom Christiansen
- Re: RFC 34 (v3) Angle brackets should... Nathan Wiger