Help for this page

Select Code to Download


  1. 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";
    
  2. or download this
        print { $Unique_DeviceType{$Unique_SN{$sn}->devicetype} } ...
    
  3. or download this
        my $fh = $Unique_DeviceType{$Unique_SN{$sn}->devicetype};
        print $fh ...