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?

link|improve this question

feedback

10 Answers

up vote 19 down vote accepted

You can add to the crontab as follows:

#write out current crontab
crontab -l > mycron
#echo new cron into cron file
echo "00 09 * * 1-5 echo hello" >> mycron
#install new cron file
crontab mycron
rm mycron
link|improve this answer
1  
You should use tempfile or mktemp – Reef May 19 '09 at 10:36
feedback

You may be able to do it on-the-fly

crontab -l | { cat; echo "0 0 0 0 0 some entry"; } | crontab -
link|improve this answer
feedback

Thanks everybody for your help. Piecing together what I found here and elsewhere I came up with this:

The Code

command="php $INSTALL/indefero/scripts/gitcron.php"
job="0 0 * * 0 $command"
cat <(fgrep -i -v "$command" <(crontab -l)) <(echo "$job") | crontab -

I couldn't figure out how to eliminate the need for the two variables without repeating myself.

command is obviously the command I want to schedule. job takes $command and adds the scheduling data. I needed both variables separately in the line of code that does the work.

Details

  1. Credit to duckyflip, I use this little redirect thingy (<(*command*)) to turn the output of crontab -l into input for the fgrep command.
  2. fgrep then filters out any matches of $command (-v option), case-insensitive (-i option).
  3. Again, the little redirect thingy (<(*command*)) is used to turn the result back into input for the cat command.
  4. The cat command also receives echo "$job" (self explanatory), again, through use of the redirect thingy (<(*command*)).
  5. So the filtered output from crontab -l and the simple echo "$job", combined, are piped ('|') over to crontab - to finally be written.
  6. And they all lived happily ever after!

In a nutshell:

This line of code filters out any cron jobs that match the command, then writes out the remaining cron jobs with the new one, effectively acting like an "add" or "update" function. To use this, all you have to do is swap out the values for the command and job variables.

link|improve this answer
feedback

Maybe this post will help you programmatically create crontabs

link|improve this answer
feedback

EDIT (fixed overwriting):

cat <(crontab -l) <(echo "1 2 3 4 5 scripty.sh") | crontab -
link|improve this answer
This will replace any crontab contents – TheBonsai May 18 '09 at 18:09
@TheBonsai oh I see, I fixed it now so it should APPEND the new command to the existing crontab contents – duckyflip May 18 '09 at 21:51
feedback

Chances are you are automating this, and you don't want a single job added twice. In that case use:

CRON="1 2 3 4 5 /root/bin/backup.sh"
cat < (crontab -l) |grep -v "${CRON}" < (echo "${CRON}")
link|improve this answer
feedback

Create a text file (in this case jobs.cron) with the following format per line for scripts you want to execute;

1 2 3 4 5 bash_script

where

1 - day of the week (0-6, Sunday = 0)
2 - month (1-12)
3 - day of month (1-31)
4 - hour of day (0-23)
5 - minute (0-59)

then run

 crontab jobs.cron
link|improve this answer
feedback

No, there is no option in crontab to modify the cron files.

You have to: take the current cron file (crontab -l > newfile), change it and put the new file in place (crontab newfile).

If you are familiar with perl, you can use this module Config::Crontab.

LLP, Andrea

link|improve this answer
feedback

If you're using the Vixie Cron, e.g. on most Linux distributions, you can just put a file in /etc/cron.d with the individual cronjob.

This only works for root of course. If your system supports this you should see several examples in there. (Note the username included in the line, in the same syntax as the old /etc/crontab)

It's a sad misfeature in cron that there is no way to handle this as a regular user, and that so many cron implementations have no way at all to handle this.

link|improve this answer
feedback

Are there some systems that don't use the order of crontab fields described here (minute, hour, day of month, month, day of week)? Wikipedia entry I was just surprised to see someone suggesting the exact opposite order.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.