X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=bin%2Firspy.pl;h=37d4b7394e15b5fad9272cc9da7c738f4088e669;hp=05cd441bda1ebd603c784aa9b5137e278b3ba0b2;hb=9fd522a36435bca48dcca9116df769072831cd46;hpb=18ebf053de2a1cb8c9e168c960f9c79069edbd70 diff --git a/bin/irspy.pl b/bin/irspy.pl index 05cd441..37d4b73 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,34 +1,23 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.4 2006-09-20 16:31:54 mike Exp $ +# $Id: irspy.pl,v 1.8 2006-09-22 15:29:24 mike Exp $ # # Run like this: -# YAZ_LOG=irspy,irspy_test,irspy_debug perl -I ../lib irspy.pl -t "bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager" localhost:3313/IR-Explain---1 +# YAZ_LOG=irspy,irspy_test,irspy_debug perl -I ../lib irspy.pl localhost:3313/IR-Explain---1 bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager "edcsns17.cr.usgs.gov:6675/CORONA SATELLITE PHOTOGRAPHY" use strict; use warnings; -use Getopt::Std; use ZOOM::IRSpy; -my %opts; -if (!getopts('t:au', \%opts) || @ARGV != 1) { - print STDERR qq[Usage: $0 [options] - -t Space-separated list of targets to check - -a Check all targets registered in database - -u Update information in database -]; +my($dbname, @targets) = @ARGV; +if (!defined $dbname) { + print STDERR "Usage $0: [ ...]\n"; + print STDERR "If no targets are specified, all targets in DB are tested\n"; exit 1; } -my $dbname = $ARGV[0]; -my $targetList = $opts{t}; -if (!defined $targetList && !$opts{a}) { - print STDERR "$0: neither -t nor -a specified\n"; - exit 2; -} - my $spy = new ZOOM::IRSpy($dbname, "admin", "fruitbat"); -$spy->targets($targetList) if defined $targetList; +$spy->targets(@targets) if @targets; $spy->initialise(); my $res = $spy->check(); if ($res == 0) {