/[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 15 - (show annotations)
Wed Dec 29 22:46:40 2004 UTC (19 years, 3 months ago) by dpavlin
File MIME type: text/plain
File size: 465 byte(s)
mostly documentation improvements, but also nicer output and field names
output (using .FDT file) in to_ascii if read_fdt is specified

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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26