InterviewSolution
Saved Bookmarks
| 1. |
How to stop an infinite loop in Unix? |
|
Answer» To STOP an infinite loop, kill the PROCESS USING the ‘kill PID’ command. Example – $ kill -9 24566 |
|