]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/killall/killall.1
This commit was generated by cvs2svn to compensate for changes in r109655,
[FreeBSD/FreeBSD.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 June 25, 1995
28 .Os
29 .Dt KILLALL 1
30 .Sh NAME
31 .Nm killall
32 .Nd kill processes by name
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl d | v
36 .Op Fl h | ?\&
37 .Op Fl help
38 .Op Fl l
39 .Op Fl m
40 .Op Fl s
41 .Op Fl z
42 .Op Fl u Ar user
43 .Op Fl t Ar tty
44 .Op Fl c Ar procname
45 .Op Fl SIGNAL
46 .Op Ar procname ...
47 .Sh DESCRIPTION
48 The
49 .Nm
50 utility kills processes selected by name, as opposed to the selection by pid
51 as done by
52 .Xr kill 1 .
53 By default, it will send a
54 .Dv TERM
55 signal to all processes with a real UID identical to the
56 caller of
57 .Nm
58 that match the name
59 .Ar procname .
60 The super-user is allowed to kill any process.
61 .Pp
62 The options are as follows:
63 .Bl -tag -width 10n -offset indent
64 .It Fl d | v
65 Be more verbose about what will be done.  For a single
66 .Fl d
67 option, a list of the processes that will be sent the signal will be
68 printed, or a message indicating that no matching processes have been
69 found.
70 .It Fl h | ?\&
71 .It Fl help
72 Give a help on the command usage and exit.
73 .It Fl l
74 List the names of the available signals and exit, like in
75 .Xr kill 1 .
76 .It Fl m
77 Match the argument
78 .Ar procname
79 as a (case insensitive) regular expression against the names
80 of processes found.
81 CAUTION!  This is dangerous, a single dot will match any process
82 running under the real UID of the caller.
83 .It Fl s
84 Show only what would be done, but do not send any signal.
85 .It Fl SIGNAL
86 Send a different signal instead of the default
87 .Dv TERM .
88 The signal may be specified either as a name
89 (with or without a leading
90 .Dv SIG ) ,
91 or numerically.
92 .It Fl u Ar user
93 Limit potentially matching processes to those belonging to
94 the specified
95 .Ar user .
96 .It Fl t Ar tty
97 Limit potentially matching processes to those running on
98 the specified
99 .Ar tty .
100 .It Fl c Ar procname
101 When used with the
102 .Fl u
103 or
104 .Fl t
105 flags, limit potentially matching processes to those matching
106 the specified
107 .Ar procname .
108 .It Fl z
109 Do not skip zombies.
110 This should not have any effect except to print a few error messages
111 if there are zombie processes that match the specified pattern.
112 .El
113 .Sh ALL PROCESSES
114 Sending a signal to all processes with uid
115 .Em XYZ
116 is already supported by
117 .Xr kill 1 .
118 So use
119 .Xr kill 1
120 for this job (e.g. $ kill -TERM -1 or
121 as root $ echo kill -TERM -1 | su -m <user>)
122 .Sh DIAGNOSTICS
123 The
124 .Nm
125 command will respond with a short usage message and exit with a status
126 of 2 in case of a command error.  A status of 1 will be returned if
127 either no matching process has been found or not all processes have
128 been signalled successfully.  Otherwise, a status of 0 will be
129 returned.
130 .Pp
131 Diagnostic messages will only be printed if requested by
132 .Fl d
133 options.
134 .Sh SEE ALSO
135 .Xr kill 1 ,
136 .Xr sysctl 3
137 .Sh HISTORY
138 The
139 .Nm
140 command appeared in
141 .Fx 2.1 .
142 It has been modeled after the
143 .Nm
144 command as available on other platforms.
145 .Sh AUTHORS
146 .An -nosplit
147 The
148 .Nm
149 program was originally written in Perl and was contributed by
150 .An Wolfram Schneider ,
151 this manual page has been written by
152 .An J\(:org Wunsch .
153 The current version of
154 .Nm
155 was rewritten in C by
156 .An Peter Wemm
157 using
158 .Xr sysctl 3 .