Help for this page

Select Code to Download


  1. or download this
    sub checkdbm {
      my $hashref=shift;
    ...
      tie (%{$hashref->{$key}},'NDBM_File',"$key-dbm",O_RDWR|O_CREAT,0640)
    +;
    
    }
    
  2. or download this
      checkdbm \%terms,$db;
    
      for my $t (@terms) {
        $terms{$db}{$t}++;
      }