--- trunk/scripts/dump_isisdb.pl 2005/03/12 21:05:29 41 +++ trunk/scripts/dump_isisdb.pl 2005/12/09 14:50:52 42 @@ -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"; }