]>
Commit | Line | Data |
---|---|---|
71aad674 | 1 | .\"- |
44bd5ea7 A |
2 | .\" Copyright (c) 1980, 1990, 1993 |
3 | .\" The Regents of the University of California. All rights reserved. | |
4 | .\" | |
5 | .\" This code is derived from software contributed to Berkeley by | |
6 | .\" the Institute of Electrical and Electronics Engineers, Inc. | |
7 | .\" | |
8 | .\" Redistribution and use in source and binary forms, with or without | |
9 | .\" modification, are permitted provided that the following conditions | |
10 | .\" are met: | |
11 | .\" 1. Redistributions of source code must retain the above copyright | |
12 | .\" notice, this list of conditions and the following disclaimer. | |
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer in the | |
15 | .\" documentation and/or other materials provided with the distribution. | |
44bd5ea7 A |
16 | .\" 4. Neither the name of the University nor the names of its contributors |
17 | .\" may be used to endorse or promote products derived from this software | |
18 | .\" without specific prior written permission. | |
19 | .\" | |
20 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
21 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
22 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
23 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
24 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
25 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
26 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
27 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
30 | .\" SUCH DAMAGE. | |
31 | .\" | |
32 | .\" @(#)kill.1 8.2 (Berkeley) 4/28/95 | |
71aad674 | 33 | .\" $FreeBSD$ |
44bd5ea7 A |
34 | .\" |
35 | .Dd April 28, 1995 | |
36 | .Dt KILL 1 | |
37 | .Os | |
38 | .Sh NAME | |
39 | .Nm kill | |
40 | .Nd terminate or signal a process | |
41 | .Sh SYNOPSIS | |
42 | .Nm | |
43 | .Op Fl s Ar signal_name | |
71aad674 | 44 | .Ar pid ... |
c0fcf4e1 | 45 | .Nm |
44bd5ea7 A |
46 | .Fl l |
47 | .Op Ar exit_status | |
c0fcf4e1 | 48 | .Nm |
71aad674 A |
49 | .Fl Ar signal_name |
50 | .Ar pid ... | |
c0fcf4e1 | 51 | .Nm |
71aad674 A |
52 | .Fl Ar signal_number |
53 | .Ar pid ... | |
44bd5ea7 | 54 | .Sh DESCRIPTION |
c0fcf4e1 A |
55 | The |
56 | .Nm | |
71aad674 A |
57 | utility sends a signal to the processes specified by the |
58 | .Ar pid | |
59 | operands. | |
44bd5ea7 A |
60 | .Pp |
61 | Only the super-user may send signals to other users' processes. | |
62 | .Pp | |
63 | The options are as follows: | |
71aad674 | 64 | .Bl -tag -width indent |
44bd5ea7 A |
65 | .It Fl s Ar signal_name |
66 | A symbolic signal name specifying the signal to be sent instead of the | |
67 | default | |
68 | .Dv TERM . | |
69 | .It Fl l Op Ar exit_status | |
70 | If no operand is given, list the signal names; otherwise, write | |
71 | the signal name corresponding to | |
72 | .Ar exit_status . | |
71aad674 | 73 | .It Fl Ar signal_name |
44bd5ea7 A |
74 | A symbolic signal name specifying the signal to be sent instead of the |
75 | default | |
76 | .Dv TERM . | |
71aad674 | 77 | .It Fl Ar signal_number |
44bd5ea7 A |
78 | A non-negative decimal integer, specifying the signal to be sent instead |
79 | of the default | |
80 | .Dv TERM . | |
81 | .El | |
82 | .Pp | |
71aad674 A |
83 | The following PIDs have special meanings: |
84 | .Bl -tag -width indent | |
44bd5ea7 A |
85 | .It -1 |
86 | If superuser, broadcast the signal to all processes; otherwise broadcast | |
87 | to all processes belonging to the user. | |
88 | .El | |
89 | .Pp | |
90 | Some of the more commonly used signals: | |
71aad674 A |
91 | .Pp |
92 | .Bl -tag -width indent -compact | |
44bd5ea7 A |
93 | .It 1 |
94 | HUP (hang up) | |
95 | .It 2 | |
96 | INT (interrupt) | |
97 | .It 3 | |
98 | QUIT (quit) | |
99 | .It 6 | |
100 | ABRT (abort) | |
101 | .It 9 | |
102 | KILL (non-catchable, non-ignorable kill) | |
103 | .It 14 | |
104 | ALRM (alarm clock) | |
105 | .It 15 | |
106 | TERM (software termination signal) | |
107 | .El | |
108 | .Pp | |
c0fcf4e1 | 109 | Some shells may provide a builtin |
44bd5ea7 | 110 | .Nm |
c0fcf4e1 A |
111 | command which is similar or identical to this utility. |
112 | Consult the | |
113 | .Xr builtin 1 | |
114 | manual page. | |
71aad674 A |
115 | .Sh EXIT STATUS |
116 | .Ex -std | |
117 | .Sh EXAMPLES | |
118 | Terminate | |
119 | the processes with PIDs 142 and 157: | |
120 | .Pp | |
121 | .Dl "kill 142 157" | |
122 | .Pp | |
123 | Send the hangup signal | |
124 | .Pq Dv SIGHUP | |
125 | to the process with PID 507: | |
126 | .Pp | |
127 | .Dl "kill -s HUP 507" | |
44bd5ea7 | 128 | .Sh SEE ALSO |
c0fcf4e1 | 129 | .Xr builtin 1 , |
44bd5ea7 | 130 | .Xr csh 1 , |
c0fcf4e1 | 131 | .Xr killall 1 , |
44bd5ea7 | 132 | .Xr ps 1 , |
71aad674 | 133 | .Xr sh 1 , |
44bd5ea7 A |
134 | .Xr kill 2 , |
135 | .Xr sigaction 2 | |
136 | .Sh STANDARDS | |
137 | The | |
138 | .Nm | |
71aad674 | 139 | utility is expected to be |
44bd5ea7 A |
140 | .St -p1003.2 |
141 | compatible. | |
142 | .Sh HISTORY | |
143 | A | |
144 | .Nm | |
145 | command appeared in | |
71aad674 | 146 | .At v3 . |
44bd5ea7 A |
147 | .Sh BUGS |
148 | A replacement for the command | |
149 | .Dq Li kill 0 | |
150 | for | |
71aad674 | 151 | .Xr csh 1 |
44bd5ea7 | 152 | users should be provided. |