Telsey telecommunications
Command Line Interface
103
MT500--SIEN12
KILL
NAME:
kill
- send a signal to the specified process(es)
SYNOPSIS:
kill [ -signal ] pid ...
kill -l [ signal ]
DESCRIPTION:
kill sends the specified signal to the specified process or process group. If no
signal is specified, the TERM signal is sent. The TERM signal will kill processes
which do not catch this signal. For other processes, it may be necessary to use
the KILL (9) signal, since this signal cannot be caught.
COMMANDS:
None.
OPTIONS:
pid...
Specify the list of processes that kill should sigal.
-signal
given as a signal name or number.
-l
List all signal names and numbers.
EXAMPLES:
Terminate the process with pid 120
kill 120
Send KILL signal to the process with pid 120
kill -SIGKILL 120
List all signal names and numbers
kill -l