X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=bin%2Firspy.pl;h=37d4b7394e15b5fad9272cc9da7c738f4088e669;hp=cfe3a40621cfc51b052cf870fd0b5da11e9ba899;hb=9fd522a36435bca48dcca9116df769072831cd46;hpb=51b9d7fd56551279e8e2c193a500c34da90d5b2b diff --git a/bin/irspy.pl b/bin/irspy.pl index cfe3a40..37d4b73 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,35 +1,23 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.5 2006-09-22 15:01:13 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(grep { $_ ne "" } split /\s+/, $targetList) - if defined $targetList; +$spy->targets(@targets) if @targets; $spy->initialise(); my $res = $spy->check(); if ($res == 0) {