InterviewSolution
Saved Bookmarks
| 1. |
How do you kill a process in Unix? |
|
Answer» Use the command kill ALONG with the process id (PID) to kill a process. Example – kill 12323 If this does not destroy the process, ADD the signal number for a kill to kill the process. Unix cannot IGNORE the signal number. Example – kill -9 12323 Continue reading Unix interview questions to know how you can stop an infinite loop USING the same command |
|