Mastercard interview question

how do you kill a process

Interview Answer

Anonymous

8 May 2015

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

1