X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=f2629bfff0e225ef7249e358a17b166f46d38708;hb=cf3be2ab23c544fdb17d40cbff47f8a6631e9fdb;hp=0728c650dbd20918d580788d91f0bcd52fa9c537;hpb=3b26752b143965dec4a078106b98c960dd8c2fee;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index 0728c650..f2629bff 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -1,7 +1,7 @@ # # show dx (normal) # -# $Id$ +# # my ($self, $line) = @_; @@ -28,6 +28,7 @@ my $bystate; my $itu; my $byitu; my $fromdxcc; +my $exact; my ($doqsl, $doiota, $doqra, $dofilter); while ($f = shift @list) { # next field @@ -40,6 +41,10 @@ while ($f = shift @list) { # next field ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count? next if $to; } + if (lc $f eq 'exact') { + $exact = 1; + next; + } if (lc $f eq 'dxcc') { $dxcc = 1; next; @@ -173,8 +178,14 @@ if ($pre) { } } unless (@ans) { - $pre .= '*' unless $pre =~ /[\*\?\[]/o; + $pre .= '*' unless $pre =~ /[\*\?\[]$/o; $pre = shellregex($pre); + if ($main::dbh) { + $pre =~ s/\.\*/%/g; + } else { + $pre =~ s/\.\*\$$//; + } + $pre .= '$' if $exact; $expr = "\$f1 =~ m{$pre}"; $pre =~ s/[\^\$]//g; $hint = "m{\U$pre}"; @@ -245,6 +256,11 @@ if ($spotter) { $expr .= ' && ' if $expr; $spotter .= '*' unless $spotter =~ /[\*\?\[]/o; $spotter = shellregex($spotter); + if ($main::dbh) { + $spotter =~ s/\.\*/%/g; + } else { + $spotter =~ s/\.\*\$$//; + } $expr .= "\$f4 =~ m{\U$spotter}"; $hint .= ' && ' if $hint; $spotter =~ s/[\^\$]//g;