Tagged Questions

10
votes
2answers
165 views

If I echo a statement and no one hears it, does it ever get echoed? (PHP cron job question)

So I have a script that I debug with a bunch of echo statements. This is run every 3 minutes on my server by cron, and I sometimes leave the echo statements in there. They're not going to a browser, …
8
votes
5answers
697 views

How do I make cron run something every “N”th minute, where n % 5 == 1?

I know that I can have something run every five minutes in cron with a line like: */5 * * * * /my/script What if I don't want it running at 12:00, 12:05, 12:10, but rather at 12:01, 12:06, 12:11, …
8
votes
5answers
1k views

How can I set cron to run certain commands every one and a half hours?

How can I set cron to run certain commands every one and a half hours?
8
votes
3answers
302 views

cron script to act as a queue OR a queue for cron ?

I'm betting that someone has already solved this and maybe I'm using the wrong search terms for google to tell me the answer, but here is my situation. I have a script that I want to run, but I want …
8
votes
10answers
2k views

What is the Windows version of cron?

A Google search turned up software that performs the same functions as cron, but nothing built into Windows. I'm running Windows XP Professional, but advice for any version of Windows would be …
7
votes
7answers
2k views

Suggestions for a Cron like scheduler in Python?

I'm looking for a library in Python which will provide at and cron like functionality. I'd quite like have a pure Python solution, rather than relying on tools installed on the box; this way I run on …
7
votes
10answers
2k views

Can PHP detect if its run from a cron job or from the command line?

I'm looking for way to PHP to detect if a script was run from a manual invocation on a shell (me logging in and running it), or if it was run from the crontab entry. I have various maintenance type …
6
votes
3answers
799 views

How to instruct cron to execute a job every second week?

I would like to run a job through cron that will be executed every second Tuesday at given time of day. For every Tuesday is easy: 0 6 * * Tue But how to make it on "every second Tuesday" (or if …
6
votes
3answers
887 views

Calculate when a cron job will be executed then next time

I have a cron "time definition" 1 * * * * (every hour at xx:01) 2 5 * * * (every day at 05:02) 0 4 3 * * (every third day of the month at 04:00) * 2 * * 5 (every minute between 02:00 and 02:59 on …
5
votes
9answers
403 views

Suggestions/Tricks for Throttling a PHP script

I have a scheduled task that runs a script on a regular basis (every hour). This script does some heavy interaction with the database and filesystem and regularly takes several minutes to run. The …
5
votes
5answers
2k views

How do I write a bash script to restart a process if it dies?

I have a python script that'll be checking a queue and performing an action on each item: # checkqueue.py while True: check_queue() do_something() How do I write a bash script that will check …
5
votes
4answers
278 views

Best rails solution for a mailer that runs every minute

Hello, I have an application that checks a database every minute for any emails that are supposed to be sent out at that time. I was thinking about making this a rake task that would be run by a cron …
5
votes
4answers
413 views

running a php task every 24 hours

Hi, I have some functions that use curl to pull information off a couple of sites and insert them into my database. I was just wondering what is the best way to go about executing this task every 24 …
5
votes
4answers
1k views

bash script runs from shell but not from cron job

Cron installation is vixie-cron /etc/cron.daily/rmspam.cron #!/bin/bash /usr/bin/rm /home/user/Maildir/.SPAM/cur/*; I Have this simple bash script that I want to add to a cron job (also includes …
4
votes
4answers
139 views

Cron API: is there such a thing?

Is there such a thing as a Cron API? I mean, is there a programmatic way of adding/removing Cron jobs without stepping onto Cron's toes?

1 2 3 4 5 15 next
15 30 50 per page