Differences

This shows you the differences between two versions of the page.

Link to this comparison view

kill [2012/08/13 17:23]
kill [2012/08/13 17:23] (current)
Line 1: Line 1:
 +====== kill ======
  
 +== Reload configuration files ==
 +
 +<​code>​
 +kill -HUP <pid>
 +</​code>​
 +
 +== Abort program (Ctl-C) ==
 +
 +<​code>​
 +kill -6 <pid>
 +</​code>​
 +
 +== Finish your work and exit ==
 +
 +<​code>​
 +kill -15 <pid>
 +</​code>​