I'm running a CLI script that mostly sleeps. Every 10 seconds or so the script executes something. The problem is, the script is sitting at 94% CPU usage while sleeping.
The way I set it up is:
while(1){
sleep(10);
doStuff();
}
While this works as intended, there's an obvious problem. In C++/Java I could simply set a timer which would eliminate the looping problem. Also, I was hoping I wouldn't need cron jobs.
Is there any alternative way to do this?
Apparently the original script of mine (which is fairly large) never entered sleep mode. For anyone who has the same issue, make sure that is not the case with you!