Guest User

Untitled

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/usr/bin/env perl
  2. use warnings;
  3. use strict;
  4.  
  5. use Fcntl; # For O_RDWR, O_CREAT, etc.
  6. use SDBM_File;
  7. use Data::Dumper;
  8. my %data;
  9. tie(%data, 'SDBM_File', '/export/home/perl8/perl/perl-5.8.9/.cpanplus/cpansmoke.dat', O_RDWR|O_CREAT, 0666)
  10. or die "Couldn't tie SDBM file 'filename': $!; aborting";
  11. #delete $data{'Pg-Explain-0.09'};
  12. print Dumper \%data;
  13.  
  14. untie %data;
Add Comment
Please, Sign In to add comment