4
votes
6answers
485 views
How to test things in crontab
Hi,
This keeps happening to me all the time:
1) I write a script(ruby, shell, etc).
2) run it, it works.
3) put it in crontab so it runs in a few minutes so I know it runs from th …
3
votes
3answers
160 views
How do YOU deploy cron jobs to production?
How do people deploy/version control cronjobs to production? I'm more curious about conventions/standards people use than any particular solution, but I happen to be using git for …
3
votes
3answers
210 views
Crontab revision control?
I've got a few dozen Linux machines running cron and I'd like to put the crontabs in some sort of revision control system. For source control I use Mercurial (hg), so that'd be id …
2
votes
3answers
39 views
crontab report of what runs in a specified start and end datetime
Are there any tools or reports out there that given a crontab file can output which jobs run within a specified time-frame.
Our crontab file has become very large and our system a …
2
votes
2answers
61 views
django custom command and cron
Hello
I want my customly made django command to be executed every minute, however it seems like python /path/to/project/myapp/manage.py mycommand doesn't seem to work while at the …
2
votes
0answers
259 views
Is there a way to validate /etc/crontab’s format? [closed]
I prefer to stick scheduled tasks in /etc/crontab so I can see at a glance what's scheduled to run, regardless of which user the task runs as.
The only gotcha is that the format i …
2
votes
1answer
260 views
alternative to cron?
Does anyone know of a good alternative to cron? I would like something that can be run with different time zones.
2
votes
2answers
447 views
why download only for apt-get cron job
I'm putting a crontab job for updating with apt-get once a day (running Debian Lenny, there are updates almost daily). But almost all examples i've seen of this cron job invoke the …
1
vote
3answers
39 views
Eval to variable failing (w/Crontab)
Here's a snippet of a bash script I'm writing to log CPU loads:
#!/bin/bash
# ... irrelevant nonsense ...
cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' …
1
vote
4answers
86 views
java scheduler
Which is the best way to run a process in scheduler. I can either do it crontab or Spring-Batch. Any other better option?
1
vote
1answer
59 views
How to get colored emails from crontab?
I call a Python script from crontab. The script does generates colored output using ANSI escapes but when crontab is sending the mail with the output I see the escapes instead of c …
1
vote
3answers
87 views
how to set cronjob for 2 days?
Hi,
I am using crontab command for db backup purpose,and want to take a backup once every two days.
is this correct 0 0 2 * * *
if wrong please tell me the correct command for set …
1
vote
4answers
177 views
Hourly cronjob on Windows
Hi,
I just setup cron on my windows dev system in order to perform
an hourly run of a script.
I tried to edit crontab in order to run my script hourly, sadly
with no success.
Co …
1
vote
3answers
243 views
Run crontab with user input
Hi, i created a crontab which will run a bash script test.sh. This test.sh file requires some input from the user, and saves the user input into a variable. How do i ensure that th …
1
vote
7answers
429 views
How to create cronjob using bash
Does crontab have an argument for creating cronjobs without using the editor (crontab -e). If so, What would be the code create a cronjob from a bash script?
