2002-10-24 01:07:20 +05:30
|
|
|
'\" t
|
2002-02-02 04:17:29 +05:30
|
|
|
.\" (The preceding line is a note to broken versions of man to tell
|
|
|
|
.\" them to pre-process this man page with tbl)
|
|
|
|
.\" Man page for kill.
|
|
|
|
.\" Licensed under version 2 of the GNU General Public License.
|
|
|
|
.\" Written by Albert Cahalan; converted to a man page by
|
|
|
|
.\" Michael K. Johnson
|
|
|
|
.TH KILL 1 "November 21, 1999" "Linux" "Linux User's Manual"
|
|
|
|
.SH NAME
|
2003-06-30 09:00:35 +05:30
|
|
|
kill \- send a signal to a process
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
|
|
.SH SYNOPSIS
|
2011-02-23 13:47:54 +05:30
|
|
|
\fBkill\fR [ \-\fBsignal\fR | \-s \fBsignal\fR ] \fBpid\fR ...
|
|
|
|
.br
|
|
|
|
\fBkill\fR [ \-L | -V, \-\-version ]
|
|
|
|
.br
|
|
|
|
\fBkill\fR \-l [ \fBsignal\fR ]
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
|
|
.SH DESCRIPTION
|
2011-02-23 13:47:54 +05:30
|
|
|
The default signal for kill is TERM. Use \-l or \-L to list available signals.
|
2002-02-02 04:17:29 +05:30
|
|
|
Particularly useful signals include HUP, INT, KILL, STOP, CONT, and 0.
|
2011-02-23 13:47:54 +05:30
|
|
|
Alternate signals may be specified in three ways: \-9 \-SIGKILL \-KILL.
|
2003-05-24 08:04:42 +05:30
|
|
|
Negative PID values may be used to choose whole process groups; see the
|
2011-02-23 13:47:54 +05:30
|
|
|
PGID column in ps command output. A PID of \-1 is special; it indicates
|
2003-05-24 08:04:42 +05:30
|
|
|
all processes except the kill process itself and init.
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
|
|
.SH SIGNALS
|
|
|
|
The signals listed below may be available for use with kill.
|
|
|
|
When known constant, numbers and default behavior are shown.
|
|
|
|
|
|
|
|
.TS
|
|
|
|
lB rB lB lB
|
|
|
|
lfCW r l l.
|
|
|
|
Name Num Action Description
|
2003-06-30 09:00:35 +05:30
|
|
|
0 0 n/a exit code indicates if a signal may be sent
|
2002-02-02 04:17:29 +05:30
|
|
|
ALRM 14 exit
|
|
|
|
HUP 1 exit
|
|
|
|
INT 2 exit
|
2011-02-23 13:47:54 +05:30
|
|
|
KILL 9 exit cannot be blocked
|
2002-02-02 04:17:29 +05:30
|
|
|
PIPE 13 exit
|
|
|
|
POLL exit
|
|
|
|
PROF exit
|
|
|
|
TERM 15 exit
|
|
|
|
USR1 exit
|
|
|
|
USR2 exit
|
|
|
|
VTALRM exit
|
2011-02-23 13:47:54 +05:30
|
|
|
STKFLT exit might not be implemented
|
|
|
|
PWR ignore might exit on some systems
|
2002-02-02 04:17:29 +05:30
|
|
|
WINCH ignore
|
|
|
|
CHLD ignore
|
|
|
|
URG ignore
|
2011-02-23 13:47:54 +05:30
|
|
|
TSTP stop might interact with the shell
|
|
|
|
TTIN stop might interact with the shell
|
|
|
|
TTOU stop might interact with the shell
|
|
|
|
STOP stop cannot be blocked
|
2002-02-02 04:17:29 +05:30
|
|
|
CONT restart continue if stopped, otherwise ignore
|
|
|
|
ABRT 6 core
|
|
|
|
FPE 8 core
|
|
|
|
ILL 4 core
|
|
|
|
QUIT 3 core
|
|
|
|
SEGV 11 core
|
|
|
|
TRAP 5 core
|
2011-02-23 13:47:54 +05:30
|
|
|
SYS core might not be implemented
|
|
|
|
EMT core might not be implemented
|
|
|
|
BUS core core dump might fail
|
|
|
|
XCPU core core dump might fail
|
|
|
|
XFSZ core core dump might fail
|
2002-02-02 04:17:29 +05:30
|
|
|
.TE
|
|
|
|
|
|
|
|
.SH NOTES
|
|
|
|
Your shell (command line interpreter) may have a built-in kill command.
|
|
|
|
You may need to run the command described here as /bin/kill to solve
|
|
|
|
the conflict.
|
|
|
|
|
|
|
|
.SH EXAMPLES
|
2011-02-23 13:47:54 +05:30
|
|
|
.TP
|
|
|
|
.B kill \-9 \-1
|
2003-05-24 08:04:42 +05:30
|
|
|
Kill all processes you can kill.
|
2011-02-23 13:47:54 +05:30
|
|
|
.TP
|
|
|
|
.B kill \-l 11
|
2003-05-24 08:04:42 +05:30
|
|
|
Translate number 11 into a signal name.
|
2011-02-23 13:47:54 +05:30
|
|
|
.TP
|
|
|
|
.B kill -L
|
2003-05-24 08:04:42 +05:30
|
|
|
List the available signal choices in a nice table.
|
2011-02-23 13:47:54 +05:30
|
|
|
.TP
|
|
|
|
.B kill 123 543 2341 3453
|
2003-05-24 08:04:42 +05:30
|
|
|
Send the default signal, SIGTERM, to all those processes.
|
2011-02-23 13:47:54 +05:30
|
|
|
|
2002-02-02 04:17:29 +05:30
|
|
|
.SH "SEE ALSO"
|
2011-02-23 13:47:54 +05:30
|
|
|
.BR pkill (1),
|
|
|
|
.BR skill (1),
|
|
|
|
.BR kill (2),
|
|
|
|
.BR renice (1),
|
|
|
|
.BR nice (1),
|
|
|
|
.BR signal (7),
|
|
|
|
.BR killall (1).
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
|
|
.SH STANDARDS
|
2011-02-23 13:47:54 +05:30
|
|
|
This command meets appropriate standards. The \-L flag is Linux-specific.
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
|
|
.SH AUTHOR
|
2002-10-12 13:06:07 +05:30
|
|
|
Albert Cahalan <albert@users.sf.net> wrote kill in 1999 to replace a
|
|
|
|
bsdutils one that was not standards compliant. The util-linux one might
|
|
|
|
also work correctly.
|
2002-02-02 04:17:29 +05:30
|
|
|
|
2011-06-04 23:10:29 +05:30
|
|
|
Please send bug reports to <procps@freelists.org>
|