Help for this page

Select Code to Download


  1. or download this
        #read
        tie %test, "NDBM_File", 'mtime', O_RDWR|O_EXCL, 0644;
    ...
            print "$_: $test{$_}\n";
        }
        untie %test;
    
  2. or download this
        #read
        tie %test, "NDBM_File", 'type', O_RDWR|O_EXCL, 0644;
    ...
            print "$_: $test{$_}\n";
        }
        untie %test;