--- trunk/scripts/dump_isis.pl 2004/12/29 15:10:34 7 +++ trunk/scripts/dump_isisdb.pl 2005/01/01 22:39:27 29 @@ -6,14 +6,20 @@ use IsisDB; use Data::Dumper; +my $isisdb = shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI', +my $debug = shift @ARGV; + my $isis = IsisDB->new ( - isisdb => shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI', - debug => shift @ARGV, + 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"; }