/[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 9 - (hide annotations)
Wed Dec 29 16:01:41 2004 UTC (19 years, 3 months ago) by dpavlin
Original Path: trunk/scripts/dump_isis.pl
File MIME type: text/plain
File size: 344 byte(s)
logically deleted records are by default skipped, but can be included using
include_deleted option to new

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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26