forked from PsychoticNinja/ailin-nemui-irssi
76 lines
3.5 KiB
Plaintext
76 lines
3.5 KiB
Plaintext
:::{important} You are reading the help for Irssi 1.0. **The current release version is Neırssi 1.3.**
|
||
:::
|
||
|
||
# exec
|
||
|
||
<!-- comment
|
||
|
||
Please submit changes to
|
||
- https://github.com/ailin-nemui/irssi/blob/master/docs/help/in/exec.in
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-common/core/fe-exec.c
|
||
|
||
|
||
endcomment -->
|
||
|
||
|
||
## Syntax ##
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:4ch"><code><span class="synB">EXEC</span> <span class="syn10">[<span class="syn">-</span>]</span> <span class="syn10">[<span class="syn">-nosh</span>]</span> <span class="syn10">[<span class="syn">-out</span> | <span class="syn">-msg</span> <span class="syn09"><target></span> | <span class="syn">-notice</span> <span class="syn09"><target></span>]</span> <span class="syn10">[<span class="syn">-name</span> <span class="syn09"><name></span>]</span> <span class="synB05"><cmd line></span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:4ch"><code><span class="synB">EXEC</span> <span class="synB">-out</span> | <span class="synB">-window</span> | <span class="synB">-msg</span> <span class="synB05"><target></span> | <span class="synB">-notice</span> <span class="synB05"><target></span> | <span class="synB">-close</span> | <span class="synB">-</span><span class="synB05"><signal></span> <span class="synB">%</span><span class="synB05"><id></span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:4ch"><code><span class="synB">EXEC</span> <span class="synB">-in</span> <span class="synB">%</span><span class="synB05"><id></span> <span class="synB05"><text to send to process></span></code></pre></div>
|
||
|
||
|
||
|
||
## Parameters ##
|
||
|
||
|
||
| | |
|
||
| --- | --- |
|
||
| `-`: | Suppresses the process termination notification. |
|
||
| `-nosh`: | Doesn't execute the command through /bin/sh. |
|
||
| `-out`: | Sends the output to the active channel or query. |
|
||
| `-msg`: | Sends the output to the specified nickname or channel. |
|
||
| `-notice`: | Sends the output to the specified nickname or channel as notices. |
|
||
| `-name`: | Gives the process the specified name. |
|
||
| `-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. |
|
||
|
||
The command to execute; if no output parameter is given, the active window
|
||
will be used and if no parameters are given at all, the list of active
|
||
processes will be displayed.
|
||
|
||
## Description ##
|
||
|
||
Executes the specified command in the background; the process can be
|
||
accessed by its id or the name you gave it.
|
||
|
||
The output of the process can be redirected to various targets, such as
|
||
a window, a channel, a nickname or a query.
|
||
|
||
The process identifier must always begin with the '%' character. For
|
||
example %0.
|
||
|
||
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.
|
||
|
||
## Examples ##
|
||
|
||
/EXEC
|
||
/EXEC ls
|
||
/EXEC -msg #irssi cat unicorn.txt
|
||
/EXEC -out cat /etc/passwd | grep $USER | awk -F: '{print $5}'
|
||
/EXEC -name ssh -nosh -interactive -window ssh staff.irssi.org
|
||
/EXEC -close mailserver
|
||
/EXEC -close %0
|
||
|
||
## See also ##
|
||
[CAT](/documentation/help/1.0/cat), [CD](/documentation/help/1.0/cd), [ECHO](/documentation/help/1.0/echo), [EVAL](/documentation/help/1.0/eval)
|
||
|