/usr/share/ircII/script/help is in ircii 20060725-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # @(#)$eterna: help,v 1.1 1997/03/26 03:29:10 mrg Exp $
#
# script to do /help when using a help service.
assign help.service ircIIhelp
alias help {
if (help.service) {
${K}${K}msg $help.service $*
} {
${K}${K}help $*
}
}
alias helpservice {
^assign help.service $*
echo Set help service to $*
}
|