X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=blobdiff_plain;f=scripts%2Fdump_isisdb.pl;fp=scripts%2Fdump_isisdb.pl;h=adbc250232aa70d7b1af165e9645cabdc697c300;hp=0000000000000000000000000000000000000000;hb=2c00de890c477f7e84eefbf5555049d23b594cd3;hpb=f58359f302818beabc46911611776b1d8a1d7e77;ds=sidebyside diff --git a/scripts/dump_isisdb.pl b/scripts/dump_isisdb.pl new file mode 100755 index 0000000..adbc250 --- /dev/null +++ b/scripts/dump_isisdb.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl -w + +use strict; +use blib; + +use IsisDB; +use Data::Dumper; + +my $isisdb = shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI', +my $debug = shift @ARGV; + +my $isis = IsisDB->new ( + isisdb => $isisdb, + debug => $debug, + include_deleted => 1, +# read_fdt => 1, +); + +print "rows: ",$isis->{'maxmfn'},"\n\n"; + +for(my $mfn = 1; $mfn <= $isis->{'maxmfn'}; $mfn++) { + print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($debug); + print $isis->to_ascii($mfn),"\n"; + +} +