- or download this
Note that if you're storing FILEHANDLES in an array
or other expression, you will have to use a block
...
print { $files[$i] } "stuff\n";
print { $OK ? STDOUT : STDERR } "stuff\n";
- or download this
print { $Unique_DeviceType{$Unique_SN{$sn}->devicetype} } ...
- or download this
my $fh = $Unique_DeviceType{$Unique_SN{$sn}->devicetype};
print $fh ...