1. Started Changes file
[spider.git] / cmd / load / cmd_cache.pl
1 #
2 # reset/reload the short name command cache
3 #
4 # you may need to do this if you remove files or the system
5 # gets confused about where it should be loading its cmd files
6 # from.
7 #
8 # Copyright (c) 1998 - Dirk Koopman G1TLH
9 #
10 # $Id$
11 #
12 my $self = shift;
13 return (1, $self->msg('e5')) if $self->priv < 9;
14 DXCommandmode::clear_cmd_cache();
15 return (1, $self->msg('ok'));