add/re-enable at_wini debug output
[minix3.git] / man / man1 / kill.1
bloba93a2c967d88962e7eb7d76dc0ef7aa0188087e0
1 .TH KILL 1
2 .SH NAME
3 kill \- send a signal to a process
4 .SH SYNOPSIS
5 \fBkill\fR [\fB\-\fIn\fR] \fIprocess\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .FL "\-\fIn\fR" "Signal number to send"
19 .FL "\-\fINAME\fR" "Named signal to send"
20 .SH EXAMPLES
21 .EX "kill 35" "Send signal 15 to process 35"
22 .EX "kill \-9 40" "Send signal 9 to process 40"
23 .EX "kill \-2 0" "Send signal 2 to whole terminal process group"
24 .EX "kill \-HUP -123" "Send a hangup to process group 123"
25 .SH DESCRIPTION
26 .PP
27 A signal is sent to a given process.
28 By default signal 15 (SIGTERM) is sent.
29 Process 0 means all the processes in the sender's process group.
30 A process group can be signalled by the negative value of the process
31 group ID.
32 Signals may be numerical, or the name of the signal without \fBSIG\fP.
33 .SH "SEE ALSO"
34 .BR kill (2),
35 .BR sigaction (2).