spider/cmd/load/cmd_cache.pl
djk b0f75ae157 1. Started Changes file
2. Added load/cmd_cache.pl to clear cmd cache shortcuts (use this if cluster.pl
get confused about where it is getting its commands from eg if you have
removed a file from local_cmd 'cos you want to go back to standard one)
3. Fixed bull handling at least to the extent that it stores them and
doesn't mess up the normal directory handling.
4. Fixed the unset/debug command so that it actually does the job!
5. Removed the middle line 'written in perl for unix' from show/version.pl
1998-12-04 16:16:27 +00:00

16 lines
365 B
Perl

#
# reset/reload the short name command cache
#
# you may need to do this if you remove files or the system
# gets confused about where it should be loading its cmd files
# from.
#
# Copyright (c) 1998 - Dirk Koopman G1TLH
#
# $Id$
#
my $self = shift;
return (1, $self->msg('e5')) if $self->priv < 9;
DXCommandmode::clear_cmd_cache();
return (1, $self->msg('ok'));