X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=irspy.pl;h=5ef77393e91adda4dff8615bb6a3241726cbb88b;hp=60bfe35c7fa719facc535559ec538bfe6734eb8b;hb=f4ad227f469be5cf0d848e1e7e99f7620abcf4a9;hpb=3e938bf0e01002cefc9076d6308c9ddca98ac5b2 diff --git a/irspy.pl b/irspy.pl index 60bfe35..5ef7739 100755 --- a/irspy.pl +++ b/irspy.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.3 2006-05-22 16:43:36 mike Exp $ +# $Id: irspy.pl,v 1.5 2006-06-20 12:36:11 mike Exp $ # # Run like this: # YAZ_LOG=irspy perl -I lib irspy.pl -t "bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager" localhost:1313/IR-Explain---1 @@ -8,7 +8,7 @@ use strict; use warnings; use Getopt::Std; -use Net::Z3950::IRSpy; +use ZOOM::IRSpy; my %opts; if (!getopts('t:au', \%opts) || @ARGV != 1) { @@ -27,10 +27,7 @@ if (!defined $targetList && !$opts{a}) { exit 2; } -my $spy = new Net::Z3950::IRSpy($dbname); +my $spy = new ZOOM::IRSpy($dbname); $spy->targets($targetList) if defined $targetList; $spy->initialise(); -my $query = $spy->query(); -my $n = $spy->hitcount(); -print "found $n records from query: $query\n"; $spy->check();