2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
%9Syntax:%9
|
|
|
|
|
2002-03-24 03:02:50 -05:00
|
|
|
@SYNTAX:script@
|
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
%9Parameters:%9
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
LIST: Displays the list of loaded scripts.
|
|
|
|
EXEC: Executes the given code.
|
|
|
|
LOAD: Loads the given script into the memory and executes it.
|
|
|
|
UNLOAD: Unloads the given script from the memory.
|
|
|
|
RESET: Unloads all the scripts.
|
|
|
|
-permanent: In combination with EXEC, the code will be loaded into the
|
|
|
|
memory.
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
If no argument is given, the list of active scripts will be displayed.
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
%9Description:%9
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
Interact with the Perl engine to execute scripts.
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
%9Examples:%9
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
/SCRIPT
|
|
|
|
/SCRIPT LIST
|
|
|
|
/SCRIPT LOAD ~/.irssi/scripts/nickserv.pl
|
|
|
|
/SCRIPT UNLOAD nickserv
|
|
|
|
/SCRIPT RESET
|
2014-08-07 16:00:40 -04:00
|
|
|
/SCRIPT EXEC foreach my $channel (Irssi::channels()) { Irssi::print($channel->{name} . ' @ ' . $channel->{server}->{tag}); }
|
2002-03-24 03:02:50 -05:00
|
|
|
|
2014-07-30 08:29:06 -04:00
|
|
|
%9See also:%9 LOAD, SAVE, UNLOAD
|
2002-03-24 03:02:50 -05:00
|
|
|
|