X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fhelp.pl;h=f0da2f82f07dcbe2ea5caa8c48e83fe048649e02;hb=de6161942af879983173417d630b6327b50a423a;hp=cf3dbd8b5a9e25a65f7e81c04bd596e060df8355;hpb=16b9415f38bf1b7eab1a9d2dc72abce9a643be09;p=spider.git diff --git a/cmd/help.pl b/cmd/help.pl index cf3dbd8b..f0da2f82 100644 --- a/cmd/help.pl +++ b/cmd/help.pl @@ -59,7 +59,7 @@ foreach $in (<$h>) { $in =~ s/=== //; my ($priv, $cmd, $desc) = split /\^/, $in; next if $priv > $self->priv; # ignore subcommands that are of no concern - next unless $cmd =~ /$line/i; + next unless $cmd =~ /^$line/i; push @out, "$cmd $desc" unless $cmd =~ /-$/o; $state = 1; next;