blob: 5b61d8a10937196a1614ccd68b9ffef19ee75f65 [file] [log] [blame]
rsc058b0112005-01-03 06:40:20 +00001.TH KILL 1
2.SH NAME
3kill, slay, start, stop \- print commands to manipulate processes
4.SH SYNOPSIS
5.B kill
6.I name ...
7.PP
8.B slay
9.I name ...
10.PP
11.B start
12.I name ...
13.PP
14.B stop
15.I name ...
rsc058b0112005-01-03 06:40:20 +000016.SH DESCRIPTION
17.I Kill
18prints commands that will cause all processes with
19.I name
20and owned by the current user to be terminated.
21Each command is commented with an output line from
22.IR ps (1)
23describing the process that would be killed.
24Use the
25.B send
26command of
27.IR 9term (1),
28or pipe the output of
29.I kill
30into
31.IR rc (1)
32or
33.IR sh (1)
34to execute the commands.
35.PP
36.I Kill
37suggests sending a Unix
38.B TERM
39signal to the process;
40sending a
41.B KILL
42signal is a surer, if heavy handed, kill,
43but is necessary if the offending process is
44ignoring signals.
45The
46.I slay
47command prints commands to do this.
48.PP
49.I Stop
50prints commands to pause execution of processes
51by sending them the
52.B STOP
53signal.
54.PP
55.I Start
56prints commands to restart stopped processes by sending them
57the
58.B CONT
59signal.
60.SH SOURCE
rscc3674de2005-01-11 17:37:33 +000061.B \*9/bin
rsc058b0112005-01-03 06:40:20 +000062.SH "SEE ALSO"
63.IR ps (1),
64.IR notify (3)
rscc8b63422005-01-13 04:49:19 +000065.SH BUGS
66.I Stop
67and
68.I start
69should limit themselves to currently running or stopped processes.