Question { Sabre, 11379 }
What is the difference between kill and kill -9 commands?
Answer
kill command uses signal SIGTERM to kill processes by default it is kill -15
kill -9 uses the sinal SIGKILL to kill a processes (i.e force termination of processes )