Mastercard Interview Question

how do you kill a process

Interview Answer

Anonymous

May 8, 2015

kill -15 processName (for cleaner process cleaning) kill -9 processName (for hard process kill)

1