]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/killall/killall.1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.bin / killall / killall.1
1 .\" Copyright (C) 1995 by Joerg Wunsch, Dresden
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
14 .\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 .\" DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
17 .\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd December 25, 2009
28 .Dt KILLALL 1
29 .Os
30 .Sh NAME
31 .Nm killall
32 .Nd kill processes by name
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl delmsvz
36 .Op Fl help
37 .Op Fl j Ar jail
38 .Op Fl u Ar user
39 .Op Fl t Ar tty
40 .Op Fl c Ar procname
41 .Op Fl Ar SIGNAL
42 .Op Ar procname ...
43 .Sh DESCRIPTION
44 The
45 .Nm
46 utility kills processes selected by name, as opposed to the selection by PID
47 as done by
48 .Xr kill 1 .
49 By default, it will send a
50 .Dv TERM
51 signal to all processes with a real UID identical to the
52 caller of
53 .Nm
54 that match the name
55 .Ar procname .
56 The super-user is allowed to kill any process.
57 .Pp
58 The options are as follows:
59 .Bl -tag -width ".Fl c Ar procname"
60 .It Fl d | v
61 Be more verbose about what will be done.
62 For a single
63 .Fl d
64 option, a list of the processes that will be sent the signal will be
65 printed, or a message indicating that no matching processes have been
66 found.
67 .It Fl e
68 Use the effective user ID instead of the (default) real user ID for matching
69 processes specified with the
70 .Fl u
71 option.
72 .It Fl help
73 Give a help on the command usage and exit.
74 .It Fl l
75 List the names of the available signals and exit, like in
76 .Xr kill 1 .
77 .It Fl m
78 Match the argument
79 .Ar procname
80 as a (case sensitive) regular expression against the names
81 of processes found.
82 CAUTION!
83 This is dangerous, a single dot will match any process
84 running under the real UID of the caller.
85 .It Fl s
86 Show only what would be done, but do not send any signal.
87 .It Fl Ar SIGNAL
88 Send a different signal instead of the default
89 .Dv TERM .
90 The signal may be specified either as a name
91 (with or without a leading
92 .Dq Li SIG ) ,
93 or numerically.
94 .It Fl j Ar jail
95 Kill processes in the specified
96 .Ar jail .
97 .It Fl u Ar user
98 Limit potentially matching processes to those belonging to
99 the specified
100 .Ar user .
101 .It Fl t Ar tty
102 Limit potentially matching processes to those running on
103 the specified
104 .Ar tty .
105 .It Fl c Ar procname
106 Limit potentially matching processes to those matching
107 the specified
108 .Ar procname .
109 .It Fl z
110 Do not skip zombies.
111 This should not have any effect except to print a few error messages
112 if there are zombie processes that match the specified pattern.
113 .El
114 .Sh ALL PROCESSES
115 Sending a signal to all processes with the given UID
116 is already supported by
117 .Xr kill 1 .
118 So use
119 .Xr kill 1
120 for this job (e.g.\&
121 .Dq Li "kill -TERM -1
122 or as root
123 .Dq Li "echo kill -TERM -1 | su -m <user>" ) .
124 .Sh IMPLEMENTATION NOTES
125 This
126 .Fx
127 implementation of
128 .Nm
129 has completely different semantics as compared to the traditional
130 .Ux
131 System V behavior of
132 .Nm .
133 The latter will kill all processes that the current user is able to
134 kill, and is intended to be used by the system shutdown process only.
135 .Sh EXIT STATUS
136 The
137 .Nm
138 utility exits 0 if some processes have been found and
139 signalled successfully.
140 Otherwise, a status of 1 will be
141 returned.
142 .Sh DIAGNOSTICS
143 Diagnostic messages will only be printed if requested by
144 .Fl d
145 options.
146 .Sh SEE ALSO
147 .Xr kill 1 ,
148 .Xr pkill 1 ,
149 .Xr sysctl 3 ,
150 .Xr jail 8
151 .Sh HISTORY
152 The
153 .Nm
154 command appeared in
155 .Fx 2.1 .
156 It has been modeled after the
157 .Nm
158 command as available on other platforms.
159 .Sh AUTHORS
160 .An -nosplit
161 The
162 .Nm
163 program was originally written in Perl and was contributed by
164 .An Wolfram Schneider ,
165 this manual page has been written by
166 .An J\(:org Wunsch .
167 The current version of
168 .Nm
169 was rewritten in C by
170 .An Peter Wemm
171 using
172 .Xr sysctl 3 .