minix man page for kill

Query: kill

OS: minix

Section: 1

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

KILL(1) 						      General Commands Manual							   KILL(1)

NAME
kill - send a signal to a process
SYNOPSIS
kill [-n] process
OPTIONS
-n Signal number to send -NAME Named signal to send
EXAMPLES
kill 35 # Send signal 15 to process 35 kill -9 40 # Send signal 9 to process 40 kill -2 0 # Send signal 2 to whole terminal process group kill -HUP -123 # Send a hangup to process group 123
DESCRIPTION
A signal is sent to a given process. By default signal 15 (SIGTERM) is sent. Process 0 means all the processes in the sender's process group. A process group can be signalled by the negative value of the process group ID. Signals may be numerical, or the name of the sig- nal without SIG.
SEE ALSO
kill(2), sigaction(2). KILL(1)
Related Man Pages
kill(1) - bsd
kill(2) - mojave
kill(1) - redhat
kill(1) - ultrix
kill(1) - freebsd
Similar Topics in the Unix Linux Community
how to trap unix signal if the process killed/interupt occured in bash...
Read/kill processes
Cron job and shell script to kill a process if memory gets to high
Not able to kill a process
Running a script on remote server kills my login session