unsorted perl tools and snippets
[webpac] / tools / test_isis.pl
1 #!/usr/bin/perl -w
2
3 use strict;
4 use OpenIsis;
5 use Data::Dumper;
6
7 my $mfn = shift @ARGV || '528';
8
9 my $db = OpenIsis::open( 'LIBRI', '-dbpath', '/data/isis_data/ps/LIBRI/' );
10
11 my $row = OpenIsis::read( $db, $mfn );
12
13 print Dumper($row);
14