X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=blobdiff_plain;f=scripts%2Fdump_isisdb.pl;h=c6f47baf84d737664a3d2e4f895bb95dbbad70a0;hp=c2f5227c551ce4887f3a669cc50648df8e393f45;hb=951f761aa6cc1d1d178778b81dd52f63c0c436da;hpb=b038a505104c4212dddfa71ab5914b49c3c8e4e7 diff --git a/scripts/dump_isisdb.pl b/scripts/dump_isisdb.pl index c2f5227..c6f47ba 100755 --- a/scripts/dump_isisdb.pl +++ b/scripts/dump_isisdb.pl @@ -3,7 +3,7 @@ use strict; use blib; -use Biblio::Isis; +use Biblio::Isis 0.24; use Getopt::Std; BEGIN { @@ -17,22 +17,23 @@ BEGIN { } my %opt; -getopts('dn:', \%opt); +getopts('do:l:v', \%opt); -my $isisdb = shift @ARGV || die "usage: $0 [-n number] [-d] /path/to/isis/BIBL\n"; +my $isisdb = shift @ARGV || die "usage: $0 [-v] [-o offset] [-l limit] [-d] /path/to/isis/BIBL\n"; my $isis = Biblio::Isis->new ( isisdb => $isisdb, debug => $opt{'d'} ? 2 : 0, - include_deleted => 1, + include_deleted => $opt{'v'}, # read_fdt => 1, + ignore_empty_subfields => $opt{'v'} ? 0 : 1, ); print "rows: ",$isis->count,"\n\n"; -my $min = 1; +my $min = $opt{o} || 1; my $max = $isis->count; -$max = $opt{n} if ($opt{n}); +$max = ( $min + $opt{l} - 1 ) if ($opt{l}); for my $mfn ($min .. $max) { print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($opt{'d'});