1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

added, patch by pasky

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2640 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-03-24 08:02:50 +00:00 committed by cras
parent 1872087642
commit 4d2fa306db

19
docs/help/in/script.in Normal file
View File

@ -0,0 +1,19 @@
@SYNTAX:script@
Irssi has very powerful support for scripts written in Perl - they can extend functionality of Irssi in almost unlimited way, and they still keep the client's core unbloated, light and fast. You can control loading and execution of such scripts by this command.
Without any parameters, /SCRIPT acts in same way as if you would call /SCRIPT LIST.
/SCRIPT LIST displays list of all currently loaded scripts, together with full path to their source files.
/SCRIPT EXEC executes the <commands> as a little perl script. It doesn't preserve it loaded in memory, unless -permanent is specified.
/SCRIPT LOAD loads the <script> in memory and executes it.
/SCRIPT UNLOAD unloads the <script> from memory.
/SCRIPT RESET unloads all loaded scripts and resets the perl interpreter.
See also: LOAD, UNLOAD