1. Added regex support to sh/dup_*.pl commands
authorminima <minima>
Mon, 14 Aug 2000 20:37:27 +0000 (20:37 +0000)
committerminima <minima>
Mon, 14 Aug 2000 20:37:27 +0000 (20:37 +0000)
2. fixed rcmd in crontab so that will work again

Changes
cmd/show/dup_ann.pl
cmd/show/dup_spots.pl
cmd/show/dup_wcy.pl
cmd/show/dup_wwv.pl

diff --git a/Changes b/Changes
index 919cf3cd2bac46e259503b28e72fa4546fed9e14..0519a27af71375d957dbf3f1a556944c1de7bc13 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+14Aug00=======================================================================
+1. Added regex support to sh/dup_*.pl commands
+2. fixed rcmd in crontab so that will work again
 13Aug00=======================================================================
 1. removed extra /60 in AnnTalk to make deduping of announces work a bit
 better for longer...
index e065fbc9b393374721ba8a45763f96f932e2f6b1..29a235beb3eba9767faee6f7911f4bf89b1f7384 100644 (file)
@@ -7,5 +7,6 @@
 # $Id$
 #
 my $self = shift;
+my $line = shift;
 return (1, $self->msg('e5')) unless $self->priv >= 9; 
-return (1, AnnTalk::listdups);
+return (1, AnnTalk::listdups $line);
index 5bd9b1747799601dee74be804a3871b742c14c33..63df8b6d1e582c940c369aaeb6751dc979e3e382 100644 (file)
@@ -7,5 +7,6 @@
 # $Id$
 #
 my $self = shift;
+my $line = shift;
 return (1, $self->msg('e5')) unless $self->priv >= 9; 
-return (1, Spot::listdups);
+return (1, Spot::listdups $line);
index a493b7f2c8133ef7b9320286c5d7a0e21484fc87..d326698d17f06dc5a6cb3a49c87b6b88af9f4b18 100644 (file)
@@ -7,5 +7,7 @@
 # $Id$
 #
 my $self = shift;
+my $line = shift;
+
 return (1, $self->msg('e5')) unless $self->priv >= 9; 
-return (1, WCY::listdups);
+return (1, WCY::listdups $line);
index 4bd5ad3fb81d42db87ad37998fe494e6a9ba691f..1360907c292da44237c814b51e6a642427e70e58 100644 (file)
@@ -7,5 +7,6 @@
 # $Id$
 #
 my $self = shift;
+my $line = shift;
 return (1, $self->msg('e5')) unless $self->priv >= 9; 
-return (1, Geomag::listdups);
+return (1, Geomag::listdups $line);