Update sample command-line comment for moved rules file.
[irspy-moved-to-github.git] / bin / irspy-stats.pl
index 24a2393..3bfe077 100755 (executable)
@@ -1,19 +1,17 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
 
-# $Id: irspy-stats.pl,v 1.1 2006-12-14 17:35:13 mike Exp $
 #
-#      perl -I ../lib irspy-stats.pl localhost:3313/IR-Explain---1
+#      perl -I ../lib irspy-stats.pl localhost:8018/IR-Explain---1 "net.host=*indexdata*"
 
 use strict;
 use warnings;
 use ZOOM::IRSpy;
 
-if (@ARGV > 2) {
+if (@ARGV < 2) {
     print STDERR "Usage: $0 [CQL-query]\n";
     exit 1;
 }
 
 my($dbname, $query) = @ARGV;
 my $stats = new ZOOM::IRSpy::Stats($dbname, $query);
-use Data::Dumper;
-print Dumper($stats);
+$stats->print();