diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-11-06 15:06:59 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-11-06 15:06:59 +0000 |
commit | d39feeffc48330e4b16768f881306b75e7673971 (patch) | |
tree | 4a950e123288fdfa52283c79c048c2949eed228d /Doc/Zsh/builtins.yo | |
parent | 42f096be3422e46695798a01c7571bf0515ef1d6 (diff) | |
download | zsh-d39feeffc48330e4b16768f881306b75e7673971.tar.gz zsh-d39feeffc48330e4b16768f881306b75e7673971.tar.xz zsh-d39feeffc48330e4b16768f881306b75e7673971.zip |
16224: add -n option to kill and complete options from _kill
Diffstat (limited to 'Doc/Zsh/builtins.yo')
-rw-r--r-- | Doc/Zsh/builtins.yo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index ef82f851e..c312842c2 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -534,8 +534,8 @@ used by daemons, to indicate their state. findex(kill) cindex(killing jobs) cindex(jobs, killing) -xitem(tt(kill) [ tt(-s) var(signal_name) ] var(job) ...) -xitem(tt(kill) [ tt(-)var(sig) ] var(job) ...) +xitem(tt(kill) [ tt(-s) var(signal_name) | tt(-n) var(signal_number) | \ +tt(-)var(sig) ] var(job) ...) item(tt(kill) tt(-l) [ var(sig) ... ])( Sends either tt(SIGTERM) or the specified signal to the given jobs or processes. @@ -544,7 +544,7 @@ If the signal being sent is not `tt(KILL)' or `tt(CONT)', then the job will be sent a `tt(CONT)' signal if it is stopped. The argument var(job) can be the process ID of a job not in the job list. -In the third form, tt(kill -l), if var(sig) is not +In the second form, tt(kill -l), if var(sig) is not specified the signal names are listed. Otherwise, for each var(sig) that is a name, the corresponding signal number is listed. For each var(sig) that is a signal number or a number |