renamed example script
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 1 Jan 2005 22:39:27 +0000 (22:39 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 1 Jan 2005 22:39:27 +0000 (22:39 +0000)
git-svn-id: file:///home/dpavlin/svn/Biblio-Isis/trunk@29 4670fa4d-42ec-0310-ab5b-a66af6943492

scripts/dump_isis.pl [deleted file]
scripts/dump_isisdb.pl [new file with mode: 0755]

diff --git a/scripts/dump_isis.pl b/scripts/dump_isis.pl
deleted file mode 100755 (executable)
index adbc250..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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";
-
-}
-
diff --git a/scripts/dump_isisdb.pl b/scripts/dump_isisdb.pl
new file mode 100755 (executable)
index 0000000..adbc250
--- /dev/null
@@ -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";
+
+}
+