Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Scheduling script with pauses

by dmitri (Priest)
on Oct 10, 2013 at 03:49 UTC ( [id://1057672]=note: print w/replies, xml ) Need Help??


in reply to Scheduling script with pauses

It's quite easy, just send suspend and resume signals to the process:
sh$ kill -STOP $pid # this suspends it sh$ kill -CONT $pid # this resumes it
You can stick that in your crontab. If there is a process group to suspend and resume, use -$pid. Pretty much, read kill(2) man page.

Update: I see this answer was given already, I did not read to the end of BrowserUk's post first time around (I gave up around "Windows" :))

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1057672]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (7)
As of 2024-04-24 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found