Help for this page

Select Code to Download


  1. or download this
    First of all, the construct 
    
    ...
        my @columns = qw(name to file action virus);
        @{ $gCurRec }{ @columns } = ('') x @columns;
    
  2. or download this
    
    $gCurRec = {
        map { ( $_ => "" ) }
        qw{ from to file action virus }
    };