/[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

Diff of /trunk/scripts/dump_isisdb.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 70 by dpavlin, Sat Aug 26 23:09:20 2006 UTC revision 71 by dpavlin, Fri May 18 21:16:43 2007 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Biblio::Isis;  use Biblio::Isis 0.24;
7  use Getopt::Std;  use Getopt::Std;
8    
9  BEGIN {  BEGIN {
# Line 17  BEGIN { Line 17  BEGIN {
17  }  }
18    
19  my %opt;  my %opt;
20  getopts('do:l:', \%opt);  getopts('do:l:v', \%opt);
21    
22  my $isisdb = shift @ARGV || die "usage: $0 [-o offset] [-l limit] [-d] /path/to/isis/BIBL\n";  my $isisdb = shift @ARGV || die "usage: $0 [-v] [-o offset] [-l limit] [-d] /path/to/isis/BIBL\n";
23    
24  my $isis = Biblio::Isis->new (  my $isis = Biblio::Isis->new (
25          isisdb => $isisdb,          isisdb => $isisdb,
26          debug => $opt{'d'} ? 2 : 0,          debug => $opt{'d'} ? 2 : 0,
27          include_deleted => 1,          include_deleted => $opt{'v'},
28  #       read_fdt => 1,  #       read_fdt => 1,
29            ignore_empty_subfields => $opt{'v'} ? 0 : 1,
30  );  );
31    
32  print "rows: ",$isis->count,"\n\n";  print "rows: ",$isis->count,"\n\n";

Legend:
Removed from v.70  
changed lines
  Added in v.71

  ViewVC Help
Powered by ViewVC 1.1.26