Which of the following commands kills the process with the PID 123 but allows the process to "clean up" before exiting?



A.

kill -PIPE 123
B.
kill -KILL 123
C.
kill -STOP 123
D.
kill -TERM 123

題解

「kill」指令可以儘可能地停止某個行程(process)。kill可以發送數種不同的信號(signal),如下:
  • SIGHUP(1)
  • SIGINT(2)
  • SIGKILL(9)
  • SIGTERM(15)
  • SIGSTOP(17,19,23)
SIGKILL和SIGSTOP無法被行程給接住,會強制關閉行程。

由於這題要讓行程在停止之前去做「clean up」的動作,SIGKILL和SIGSTOP信號無法達成,SIGTERM才可以,因此答案是選項D。