]> git.saurik.com Git - apple/shell_cmds.git/blame - kill/kill.1
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / kill / kill.1
CommitLineData
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
55The
56.Nm
71aad674
A
57utility sends a signal to the processes specified by the
58.Ar pid
59operands.
44bd5ea7
A
60.Pp
61Only the super-user may send signals to other users' processes.
62.Pp
63The options are as follows:
71aad674 64.Bl -tag -width indent
44bd5ea7
A
65.It Fl s Ar signal_name
66A symbolic signal name specifying the signal to be sent instead of the
67default
68.Dv TERM .
69.It Fl l Op Ar exit_status
70If no operand is given, list the signal names; otherwise, write
71the signal name corresponding to
72.Ar exit_status .
71aad674 73.It Fl Ar signal_name
44bd5ea7
A
74A symbolic signal name specifying the signal to be sent instead of the
75default
76.Dv TERM .
71aad674 77.It Fl Ar signal_number
44bd5ea7
A
78A non-negative decimal integer, specifying the signal to be sent instead
79of the default
80.Dv TERM .
81.El
82.Pp
71aad674
A
83The following PIDs have special meanings:
84.Bl -tag -width indent
44bd5ea7
A
85.It -1
86If superuser, broadcast the signal to all processes; otherwise broadcast
87to all processes belonging to the user.
88.El
89.Pp
90Some of the more commonly used signals:
71aad674
A
91.Pp
92.Bl -tag -width indent -compact
44bd5ea7
A
93.It 1
94HUP (hang up)
95.It 2
96INT (interrupt)
97.It 3
98QUIT (quit)
99.It 6
100ABRT (abort)
101.It 9
102KILL (non-catchable, non-ignorable kill)
103.It 14
104ALRM (alarm clock)
105.It 15
106TERM (software termination signal)
107.El
108.Pp
c0fcf4e1 109Some shells may provide a builtin
44bd5ea7 110.Nm
c0fcf4e1
A
111command which is similar or identical to this utility.
112Consult the
113.Xr builtin 1
114manual page.
71aad674
A
115.Sh EXIT STATUS
116.Ex -std
117.Sh EXAMPLES
118Terminate
119the processes with PIDs 142 and 157:
120.Pp
121.Dl "kill 142 157"
122.Pp
123Send the hangup signal
124.Pq Dv SIGHUP
125to 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
137The
138.Nm
71aad674 139utility is expected to be
44bd5ea7
A
140.St -p1003.2
141compatible.
142.Sh HISTORY
143A
144.Nm
145command appeared in
71aad674 146.At v3 .
44bd5ea7
A
147.Sh BUGS
148A replacement for the command
149.Dq Li kill 0
150for
71aad674 151.Xr csh 1
44bd5ea7 152users should be provided.