/[Biblio-Isis]/trunk/scripts/dump_isisdb.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/scripts/dump_isisdb.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32 - (hide annotations)
Wed Jan 5 15:46:26 2005 UTC (19 years, 3 months ago) by dpavlin
File MIME type: text/plain
File size: 455 byte(s)
new api version
- added count method (instead of calling maxmfn directly in object)
- added POD coverage test
- moved unpack_cnt to be separate method and document it

1 dpavlin 2 #!/usr/bin/perl -w
2    
3     use strict;
4     use blib;
5    
6     use IsisDB;
7     use Data::Dumper;
8    
9 dpavlin 13 my $isisdb = shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI',
10     my $debug = shift @ARGV;
11    
12 dpavlin 2 my $isis = IsisDB->new (
13 dpavlin 13 isisdb => $isisdb,
14     debug => $debug,
15 dpavlin 9 include_deleted => 1,
16 dpavlin 15 # read_fdt => 1,
17 dpavlin 2 );
18    
19 dpavlin 32 print "rows: ",$isis->count,"\n\n";
20 dpavlin 4
21 dpavlin 32 for(my $mfn = 1; $mfn <= $isis->count; $mfn++) {
22 dpavlin 15 print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($debug);
23 dpavlin 2 print $isis->to_ascii($mfn),"\n";
24    
25     }
26    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26