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?
|
feedback
|
|
You can add to the crontab as follows:
| |||||
feedback
|
|
You may be able to do it on-the-fly
| |||
|
feedback
|
|
Thanks everybody for your help. Piecing together what I found here and elsewhere I came up with this: The Code
I couldn't figure out how to eliminate the need for the two variables without repeating myself.
Details
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 | ||||
|
feedback
|
|
Maybe this post will help you programmatically create crontabs | |||
|
feedback
|
|
EDIT (fixed overwriting):
| |||||
feedback
|
|
Chances are you are automating this, and you don't want a single job added twice. In that case use:
| |||
|
feedback
|
|
Create a text file (in this case
where
then run
| |||
|
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 | |||
|
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. | |||
|
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. | |||
|
feedback
|