/[Biblio-Isis]/trunk/scripts/dump_isis.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/scripts/dump_isis.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7 - (show annotations)
Wed Dec 29 15:10:34 2004 UTC (19 years, 3 months ago) by dpavlin
File MIME type: text/plain
File size: 321 byte(s)
added benchmarking script, some speedup (7029.54/s vs 5829.19/s),
removed left-overs from php porting (dictionaries are not supported by this module),
make dump_isis.pl arguments same as dump_openisis.pl,
renamed GetMFN to fetch

1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use IsisDB;
7 use Data::Dumper;
8
9 my $isis = IsisDB->new (
10 isisdb => shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI',
11 debug => shift @ARGV,
12 );
13
14 print "rows: ",$isis->{'maxmfn'},"\n\n";
15
16 for(my $mfn = 1; $mfn <= $isis->{'maxmfn'}; $mfn++) {
17 print $isis->to_ascii($mfn),"\n";
18
19 }
20

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26