summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-03-24 08:02:50 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-03-24 08:02:50 +0000
commit4d2fa306dbc02a0e164c5cd114dfb2374e2e63c0 (patch)
treee440b5d3a6a37ab6a245610bb21ad247c9f13813
parent187208764216b2a41a98fd3c839dfe9f6a214368 (diff)
downloadirssi-4d2fa306dbc02a0e164c5cd114dfb2374e2e63c0.zip
added, patch by pasky
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2640 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--docs/help/in/script.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/help/in/script.in b/docs/help/in/script.in
new file mode 100644
index 00000000..0354512b
--- /dev/null
+++ b/docs/help/in/script.in
@@ -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
+