freebsd-dev/bin/kill/kill.1

158 lines
3.9 KiB
Groff
Raw Normal View History

.\"-
1994-05-26 06:18:55 +00:00
.\" Copyright (c) 1980, 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" This code is derived from software contributed to Berkeley by
.\" the Institute of Electrical and Electronics Engineers, Inc.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
1994-05-26 06:18:55 +00:00
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
1996-12-14 06:01:00 +00:00
.\" @(#)kill.1 8.2 (Berkeley) 4/28/95
1999-08-27 23:15:48 +00:00
.\" $FreeBSD$
1994-05-26 06:18:55 +00:00
.\"
.Dd October 3, 2016
1994-05-26 06:18:55 +00:00
.Dt KILL 1
.Os
.Sh NAME
.Nm kill
.Nd terminate or signal a process
.Sh SYNOPSIS
.Nm
1996-12-14 06:01:00 +00:00
.Op Fl s Ar signal_name
2007-03-04 09:15:12 +00:00
.Ar pid ...
.Nm
1996-12-14 06:01:00 +00:00
.Fl l
.Op Ar exit_status
.Nm
.Fl Ar signal_name
2007-03-04 09:15:12 +00:00
.Ar pid ...
.Nm
.Fl Ar signal_number
2007-03-04 09:15:12 +00:00
.Ar pid ...
1994-05-26 06:18:55 +00:00
.Sh DESCRIPTION
1996-12-14 06:01:00 +00:00
The
.Nm
utility sends a signal to the processes specified by the
.Ar pid
2007-03-04 09:15:12 +00:00
operands.
1994-05-26 06:18:55 +00:00
.Pp
Only the super-user may send signals to other users' processes.
.Pp
The options are as follows:
2007-03-04 09:15:12 +00:00
.Bl -tag -width indent
1996-12-14 06:01:00 +00:00
.It Fl s Ar signal_name
A symbolic signal name specifying the signal to be sent instead of the
default
.Dv TERM .
.It Fl l Op Ar exit_status
If no operand is given, list the signal names; otherwise, write
the signal name corresponding to
.Ar exit_status .
.It Fl Ar signal_name
1994-05-26 06:18:55 +00:00
A symbolic signal name specifying the signal to be sent instead of the
default
.Dv TERM .
.It Fl Ar signal_number
1994-05-26 06:18:55 +00:00
A non-negative decimal integer, specifying the signal to be sent instead
of the default
.Dv TERM .
.El
.Pp
2007-03-04 09:15:12 +00:00
The following PIDs have special meanings:
.Bl -tag -width indent
1996-12-14 06:01:00 +00:00
.It -1
If superuser, broadcast the signal to all processes; otherwise broadcast
to all processes belonging to the user.
.El
.Pp
1994-05-26 06:18:55 +00:00
Some of the more commonly used signals:
2007-03-04 09:15:12 +00:00
.Pp
.Bl -tag -width indent -compact
1996-12-14 06:01:00 +00:00
.It 1
HUP (hang up)
.It 2
INT (interrupt)
.It 3
QUIT (quit)
.It 6
ABRT (abort)
.It 9
KILL (non-catchable, non-ignorable kill)
.It 14
ALRM (alarm clock)
.It 15
TERM (software termination signal)
1994-05-26 06:18:55 +00:00
.El
.Pp
Some shells may provide a builtin
1998-05-13 07:47:35 +00:00
.Nm
command which is similar or identical to this utility.
Consult the
.Xr builtin 1
manual page.
.Sh EXIT STATUS
.Ex -std
2002-06-13 08:40:01 +00:00
.Sh EXAMPLES
Terminate
2007-03-04 09:15:12 +00:00
the processes with PIDs 142 and 157:
2002-06-13 08:40:01 +00:00
.Pp
.Dl "kill 142 157"
.Pp
Send the hangup signal
.Pq Dv SIGHUP
2007-03-04 09:15:12 +00:00
to the process with PID 507:
2002-06-13 08:40:01 +00:00
.Pp
.Dl "kill -s HUP 507"
.Pp
2007-03-04 09:15:12 +00:00
Terminate the process group with PGID 117:
2002-06-13 08:40:01 +00:00
.Pp
.Dl "kill -- -117"
1994-05-26 06:18:55 +00:00
.Sh SEE ALSO
.Xr builtin 1 ,
1994-05-26 06:18:55 +00:00
.Xr csh 1 ,
1996-07-03 22:19:50 +00:00
.Xr killall 1 ,
1994-05-26 06:18:55 +00:00
.Xr ps 1 ,
.Xr sh 1 ,
1994-05-26 06:18:55 +00:00
.Xr kill 2 ,
.Xr sigaction 2
1996-12-14 06:01:00 +00:00
.Sh STANDARDS
The
.Nm
2007-03-04 09:15:12 +00:00
utility is expected to be
1996-12-14 06:01:00 +00:00
.St -p1003.2
compatible.
1994-05-26 06:18:55 +00:00
.Sh HISTORY
A
1998-05-13 07:47:35 +00:00
.Nm
1994-05-26 06:18:55 +00:00
command appeared in
.At v3
in section 8 of the manual.
1994-05-26 06:18:55 +00:00
.Sh BUGS
A replacement for the command
.Dq Li kill 0
for
2004-07-03 00:06:28 +00:00
.Xr csh 1
1994-05-26 06:18:55 +00:00
users should be provided.