From: Dobrica Pavlinusic Date: Fri, 9 Dec 2005 14:50:52 +0000 (+0000) Subject: added -d path and -n flags X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=commitdiff_plain;h=7749b1f9d18b2971c788b1bf053e63f50b8f99fc added -d path and -n flags git-svn-id: file:///home/dpavlin/svn/Biblio-Isis/trunk@42 4670fa4d-42ec-0310-ab5b-a66af6943492 --- diff --git a/scripts/dump_isisdb.pl b/scripts/dump_isisdb.pl index 057cd29..19e46c2 100755 --- a/scripts/dump_isisdb.pl +++ b/scripts/dump_isisdb.pl @@ -1,25 +1,31 @@ #!/usr/bin/perl -w use strict; -use blib; +#use blib; use Biblio::Isis; +use Getopt::Std; use Data::Dumper; -my $isisdb = shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI', -my $debug = shift @ARGV; +my %opt; +getopts('dn:', \%opt); + +my $isisdb = shift @ARGV || die "usage: $0 [-n number] [-d] /path/to/isis/BIBL\n"; my $isis = Biblio::Isis->new ( isisdb => $isisdb, - debug => $debug, + debug => $opt{'d'}, include_deleted => 1, # read_fdt => 1, ); print "rows: ",$isis->count,"\n\n"; -for(my $mfn = 1; $mfn <= $isis->count; $mfn++) { - print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($debug); +my $min = 1; +my $max = $isis->count; + +for my $mfn ($min .. $max) { + print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($opt{'d'}); print $isis->to_ascii($mfn),"\n"; }