Help for this page

Select Code to Download


  1. or download this
     
    while (<PARMFILE>) {
      next if /^#/ || /^\s*$/;
    ...
      my @temp=split(/\s+/,$_);
      $dbparms{$temp[2]} = \@temp;
    }
    
  2. or download this
     
    while (<PARMFILE>) {
      next if /^#/ || /^\s*$/;
    ...
      @temp=split(/\s+/,$_);
      $dbparms{$temp[2]} = [@temp];
    }