| kill |
|
|
|
| Wednesday, 16 December 2009 17:07 |
Command - killKill command sends a signal to the process. Syntaxkill [options] id_process
Options-Nsignal sends a specified signal (where Nsignal - the number or name). DescriptionThe kill command sends a signal to the process. The signal default kill signal is TERM Usually this signal is designed to complete the process. For example, kill -9 123 terminates the process with ID 123. To view identifiers processes use the command ps. To view a list of names and number of signals type signal kill -l. |