in reply to How can I create an array of filehandles?
In a production environment, I wouldn't use a symbolic reference to a filename like I do in the first loop, but this is just an example.#!/usr/bin/perl -w use strict; use Symbol; my @handles; for (1 .. 2) { my $fh = gensym; open $fh, "test$_"; push @handles, $fh; } foreach my $handle (@handles) { print while (<$handle>); print "---\n"; close $handle; }
|
---|