1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Syntax documentation rewrite for E-commands

Rewrote the syntax documentation for commands starting with the letter
E.
This commit is contained in:
Geert Hauwaerts 2014-07-03 21:42:37 +02:00
parent 037fae0ed5
commit f295a02cda
3 changed files with 80 additions and 33 deletions

View File

@ -1,5 +1,25 @@
%9Syntax:%9
@SYNTAX:echo@ @SYNTAX:echo@
Prints text into the current window. Useful for scripts. %9Parameters:%9
-current: Displays the output in the active window.
-window: Displays the ouput in the target window.
-level: Displays the output with a given message level.
The text ouput; if no target is given, the active window will be used.
%9Description:%9
Displays the given text.
%9Examples:%9
/ECHO 1 + 1 = 2 :D
/ECHO -current Testing the ECHO command
/ECHO -window #irssi Special variables such as ${N} will not be expanded.
%9See also:%9 CAT, EVAL, EXEC, LEVELS

View File

@ -1,6 +1,25 @@
%9Syntax:%9
@SYNTAX:eval@ @SYNTAX:eval@
Evaluates the given commands and executes them. Internal variables %9Parameters:%9
are expanded. See the special_vars.txt file in the docs-directory.
The commands to evaluate.
%9Description:%9
Evaluates the given commands and executes them; you can use internal
variables and separate multiple commands by using the ";" character.
%9Examples%9
/EVAL echo I am connected to ${S} on ${chatnet} as ${N}
/EVAL echo My user privileges are +${usermode}; echo Let's party!
%9References:%9
https://github.com/irssi/irssi/blob/master/docs/special_vars.txt
%9See also:%9 CAT, CD, ECHO, EXEC

View File

@ -1,41 +1,49 @@
%9Syntax:%9
@SYNTAX:exec@ @SYNTAX:exec@
-: Don't print "process terminated ..." message %9Parameters:%9
-nosh: Don't start command through /bin/sh
-out: Send output to active channel/query
-msg: Send output to specified nick/channel
-notice: Send output to specified nick/channel as notices
-name: Name the process so it could be accessed easier
-window: Move the output of specified process to active window -: Suppresses the process termination notification.
-close: Forcibly close (or "forget") a process that doesn't die. -nosh: Doesn't execute the command through /bin/sh.
This only removes all information from irssi concerning the -out: Sends the output to the active channel or query.
process, it doesn't send SIGKILL or any other signal -msg: Sends the output to the specified nickname or channel.
to the process. -notice: Sends the output to the specified nickname or channel as notices.
-<signal>: Send a signal to process. <signal> can be either numeric -name: Gives the process the specified name.
or one of the few most common ones (hup, term, kill, ...) -window: Displays the output in the active window.
-close: Forcibly closes a process that doesn't die.
-<signal>: Sends the given signal to the process.
-in: Sends text to the standard input of the process.
-interactive: Executes the process in a new window item.
-in: Send text to standard input of the specified process The command to execute; if no output parameter is given, the active window
-interactive: Creates a query-like window item. Text written to it is will be used and if no parameters are given at all, the list of active
sent to executed process, like /EXEC -in. processes will be displayed.
Execute specified command in background. Output of process is printed %9Description:%9
to active window by default, but can be also sent as messages or
notices to specified nick or channel.
Processes can be accessed either by their ID or name if you named it. Executes the specified command in the background; the process can be
Process identifier must always begin with '%%' character, like %%0 or accessed by its id or the name you gave it.
%%name.
Once the process is started, its output can still be redirected The output of the process can be redirected to various targets, such as
elsewhere with the -window, -msg, etc. options. You can send text to a window, a channel, a nickname or a query.
standard input of the process with -in option.
-close option shouldn't probably be used if there's a better way to The process identifier must always begin with the "%%" character. For
kill the process. It is meant to remove the processes that don't die example %%0.
even with SIGKILL. This option just closes the pipes used to
communicate with the process and frees all memory it used.
EXEC without any arguments displays the list of started processes. If you remove a process with the close parameter, it will only make Irssi
detach from it; the process will keep running until it terminates.
%9Examples:%9
/EXEC
/EXEC ls
/EXEC -msg #irssi cat unicorn.txt
/EXEC -out cat /etc/passwd | grep $USER | awk -F: '{print $5}'
/EXEC -name mailserver -interactive telnet gmail.google.com. 25
/EXEC -close mailserver
/EXEC -close %%0
%9See also:%9 CAT, CD, ECHO, EVAL