diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 09:37:45 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 09:37:45 +0100 |
commit | ffba715ea18481372305c23b94938f08a7c04785 (patch) | |
tree | eb1c7b4f85b07ae47876b270171bd856e7110958 /doc/ja/autogen | |
parent | 7afd013665b12277a7447319c39e203c89fd09f5 (diff) | |
download | weechat-ffba715ea18481372305c23b94938f08a7c04785.zip |
exec: add options "-pipe" and "-hsignal" in command /exec
Diffstat (limited to 'doc/ja/autogen')
-rw-r--r-- | doc/ja/autogen/user/exec_commands.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ja/autogen/user/exec_commands.txt b/doc/ja/autogen/user/exec_commands.txt index 971498550..1fef63d14 100644 --- a/doc/ja/autogen/user/exec_commands.txt +++ b/doc/ja/autogen/user/exec_commands.txt @@ -3,7 +3,7 @@ ---- /exec -list - [-sh|-nosh] [-bg|-nobg] [-stdin|-nostdin] [-buffer <name>] [-l|-o|-n] |-sw|-nosw] [-ln|-noln] [-color off|decode|strip] [-rc|-norc] [-timeout <timeout>] [-name <name>] <command> + [-sh|-nosh] [-bg|-nobg] [-stdin|-nostdin] [-buffer <name>] [-l|-o|-n] |-sw|-nosw] [-ln|-noln] [-color off|decode|strip] [-rc|-norc] [-timeout <timeout>] [-name <name>] [-pipe <command>] [-hsignal <name>] <command> -in <id> <text> -inclose <id> [<text>] -signal <id> <signal> @@ -35,6 +35,8 @@ -norc: don't display return code -timeout: set a timeout for the command (in seconds) -name: set a name for the command (to name it later with /exec) + -pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-n) +-hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-n) command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output id: command identifier: either its number or name (if set with "-name xxx") -in: send text on standard input of process |