Go to main content
Oracle® Developer Studio 12.6: Debugging a Program with dbx

Exit Print View

Updated: June 2017
 
 

kill Command

The kill command sends a signal to a process. It is valid only in native mode.

Syntax

kill -l

List all known signal numbers, names, and descriptions.

kill

Kill the controlled process.

kill [signal]job ...

Send the SIGTERM signal to the listed jobs.

If the –signal option is specified, send the given signal to the listed jobs.

where:

job can be a process ID or can be specified in any of the following ways:

%+

Kill the current job.

%-

Kill the previous job.

%number

Kill job number number.

%string

Kill the job that begins with string.

%?string

Kill the job that contains string.

where:

signal is the name of a signal.