Help for this page

Select Code to Download


  1. or download this
      open( my $fh, "<", $sigDataFile ) || die( "cannot open file - $!" );
      while( <$fh> ) {
    ...
         my( $key, $value ) = split(/=/, $_); # does = need to be escaped?
         ...
       }
    
  2. or download this
      use Fcntl;
      use SDBM_File;
    ...
        $hash{$key} = $value;
        ...
      }