first working version:
[Biblio-Isis] / scripts / dump_isis.pl
diff --git a/scripts/dump_isis.pl b/scripts/dump_isis.pl
new file mode 100755 (executable)
index 0000000..5e2942d
--- /dev/null
@@ -0,0 +1,17 @@
+#!/usr/bin/perl -w
+
+use strict;
+use blib;
+
+use IsisDB;
+use Data::Dumper;
+
+my $isis = IsisDB->new (
+       isisdb => '/data/isis_data/ps/LIBRI/LIBRI',
+);
+
+for(my $mfn = 1; $mfn <= $isis->{'maxmfn'}; $mfn++) {
+       print $isis->to_ascii($mfn),"\n";
+
+}
+