X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=blobdiff_plain;f=scripts%2Fdump_isis.pl;fp=scripts%2Fdump_isis.pl;h=adbc250232aa70d7b1af165e9645cabdc697c300;hp=ea59d0fdbbd5836fc08aa84d90bb86383ad6d58a;hb=45db9669f10835de04dc61f31ac4467ebcf7c9cb;hpb=e5f476d0fa9eb665fe43c7c316bf079e9c3b929f diff --git a/scripts/dump_isis.pl b/scripts/dump_isis.pl index ea59d0f..adbc250 100755 --- a/scripts/dump_isis.pl +++ b/scripts/dump_isis.pl @@ -13,12 +13,13 @@ 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)) if ($debug); + print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($debug); print $isis->to_ascii($mfn),"\n"; }