ChatGPT解决这个技术问题 Extra ChatGPT

How do I create a crontab through a script

I need to add a cron job thru a script I run to set up a server. I am currently using Ubuntu. I can use crontab -e but that will open an editor to edit the current crontab. I want to do this programmatically.

Is it possible to do so?

If you're looking to modify or delete a crontab entry, see my solution below.

J
Joe Casadonte

Here's a one-liner that doesn't use/require the new job to be in a file:

(crontab -l 2>/dev/null; echo "*/5 * * * * /path/to/job -with args") | crontab -

The 2>/dev/null is important so that you don't get the no crontab for username message that some *nixes produce if there are currently no crontab entries.


This should be the accepted answer. Just need a way now to check if the one-liner I intend to add is already there or not...
...oh wait, here's how to check if something is in my user's crontab before I add it with a script: stackoverflow.com/a/14451184/3686125
if this script is intended as a command to be repeated and modify an existing cron task, it could be nice to replace the existing line in crontab. several markers can be used to control different cron tasks (control-marker-1, control-marker-2, etc...): (crontab -l 2>/dev/null | grep -v control-marker-1; echo '*/5 * * * * /path/to/job -with args #control-marker-1') | crontab -
I found that this was removing existing crontab entries and also I needed to use a different user (root) so I used the following to maintain the existing entries: echo -e "$(sudo crontab -u root -l)\n* * * * * echo hello > /home/danny/temp.log 2>&1" | sudo crontab -u root - Hopefully this helps someone
What does */ mean here?
D
Dennis Williamson

For user crontabs (including root), you can do something like:

crontab -l -u user | cat - filename | crontab -u user -

where the file named "filename" contains items to append. You could also do text manipulation using sed or another tool in place of cat. You should use the crontab command instead of directly modifying the file.

A similar operation would be:

{ crontab -l -u user; echo 'crontab spec'; } | crontab -u user -

If you are modifying or creating system crontabs, those may be manipulated as you would ordinary text files. They are stored in the /etc/cron.d, /etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly, /etc/cron.monthly directories and in the files /etc/crontab and /etc/anacrontab.


Looked promising but trying the second approach (with echo), I got "crontab: usage error: file name must be specified for replace." Cron man page shows syntax as crontab [ -u user ] file, that is, with a mandatory file name. Is there some trick to get it to accept the piped data instead?
@MarkBerry: Sorry about that. In a pipe, a hyphen must be used to indicate that input is from stdin. I'll correct my answer.
I
IvanGoneKrazy

In Ubuntu and many other distros, you can just put a file into the /etc/cron.d directory containing a single line with a valid crontab entry. No need to add a line to an existing file.

If you just need something to run daily, just put a file into /etc/cron.daily. Likewise, you can also drop files into /etc/cron.hourly, /etc/cron.monthly, and /etc/cron.weekly.


But you must be root to do this.
@IvanGoneKrazy - Any such folder if I have to run at every reboot?
c
cledoux

Crontab files are simply text files and as such can be treated like any other text file. The purpose of the crontab command is to make editing crontab files safer. When edited through this command, the file is checked for errors and only saved if there are none.

crontab [path to file] can be used to specify a crontab stored in a file. Like crontab -e, this will only install the file if it is error free.

Therefore, a script can either directly write cron tab files, or write them to a temporary file and load them with the crontab [path to temp file] command. Writing directly saves having to write a temporary file, but it also avoids the safety check.


For noobs such as myself, note that it is crontab [path to file] .. This was definately the best option for me, as it allows more legible code. I use crontab to track parcels and change my desktop wallpaper with the status. When I'm not expecting parcels, it doesn't need to check every hour. That's why I wanted the script to auto-edit the cron frequency.
@Rasmus That sounds like an awesome script I'd love to be able to steal. Any chance of sharing via a gist or similar?
Just FYI that crontab [path to file] doesn't necessarily need a "temporary" file, it can load any file that is properly formatted in a crontab layout. This is the approach we are using with SlickStack, so that the crontab template can be updated (downloaded) anytime and then reinstalled: github.com/littlebizzy/slickstack/blob/master/00-crontab.txt
F
Faria

(I don't have enough reputation to comment, so I'm adding at as an answer: feel free to add it as as comment next to his answer)

Joe Casadonte's one-liner is perfect, except if you run with set -e, i.e. if your script is set to fail on error, and if there are no cronjobs yet. In that case, the one-liner will NOT create the cronjob, but will NOT stop the script. The silent failure can be very misleading.

The reason is that crontab -l returns with a 1 return code, causing the subsequent command (the echo) not to be executed... thus the cronjob is not created. But since they are executed as a subprocess (because of the parenthesis) they don't stop the script.

(Interestingly, if you run the same command again, it will work: once you have executed crontab - once, crontab -l still outputs nothing, but it doesn't return an error anymore (you don't get the no crontab for <user> message anymore). So the subsequent echo is executed and the crontab is created)

In any case, if you run with set -e, the line must be:

(crontab -l 2>/dev/null || true; echo "*/5 * * * * /path/to/job -with args") | crontab -

Yes, this one's even more perfect.
Good one - I hope it gave you the missing reputation!
The only useful answer I found for this problem.
B
Benjamin Hodgson

Even more simple answer to you question would be:

echo "0 1 * * * /root/test.sh" | tee -a /var/spool/cron/root

You can setup cronjobs on remote servers as below:

#!/bin/bash
servers="srv1 srv2 srv3 srv4 srv5"
for i in $servers
  do
  echo "0 1 * * * /root/test.sh" | ssh $i " tee -a /var/spool/cron/root"
done

In Linux, the default location of the crontab file is /var/spool/cron/. Here you can find the crontab files of all users. You just need to append your cronjob entry to the respective user's file. In the above example, the root user's crontab file is getting appended with a cronjob to run /root/test.sh every day at 1 AM.


That would be /var/spool/cron/crontabs/root on Ubuntu.
S
Shardj

Cron jobs usually are stored in a per-user file under /var/spool/cron

The simplest thing for you to do is probably just create a text file with the job configured, then copy it to the cron spool folder and make sure it has the right permissions (600).


Modifying the files directly in /var/spool/cron is frowned upon. In fact, if you look at the files there, they will usually contain warnings such as "DO NOT EDIT THIS FILE" as the first line.
@Jared While I quite agree with the idea, saying it "is frowned upon" doesn't help much. Rather tell which other file should be edited, if any, or explain the risks of editing files manually. I'm planning to create some cron jobs via automated command line, and if editing this file is both the only option, and without significant side effects, I don't see why I shouldn't use it.
Scroll down for the real answer.
In my opinion, this answer is way better: stackoverflow.com/a/610860/2681752
I took this approach and regretted it. On RHEL, the directory /var/spool/cron is not world executable, so users can't traverse the directory and edit their files manually. If you make /var/spool/cron world executable, your friendly local sysadmin will be mad at you, plus the permission change can be overwritten if the cronie package is ever reinstalled or updated.
u
user2845840

As a correction to those suggesting crontab -l | crontab -: This does not work on every system. For example, I had to add a job to the root crontab on dozens of servers running an old version SUSE (don't ask why). Old SUSEs prepend comment lines to the output of crontab -l, making crontab -l | crontab - non-idempotent (Debian recognizes this problem in the crontab manpage and patched its version of Vixie Cron to change the default behaviour of crontab -l).

To edit crontabs programmatically on systems where crontab -l adds comments, you can try the following:

EDITOR=cat crontab -e > old_crontab; cat old_crontab new_job | crontab -

EDITOR=cat tells crontab to use cat as an editor (not the usual default vi), which doesn't change the file, but instead copies it to stdout. This might still fail if crontab - expects input in a format different from what crontab -e outputs. Do not try to replace the final crontab - with crontab -e - it will not work.


D
Dirk Eddelbuettel

Well /etc/crontab just an ascii file so the simplest is to just

 echo "*/15 * * * *   root     date" >> /etc/crontab

which will add a job which will email you every 15 mins. Adjust to taste, and test via grep or other means whether the line was already added to make your script idempotent.

On Ubuntu et al, you can also drop files in /etc/cron.* which is easier to do and test for---plus you don't mess with (system) config files such as /etc/crontab.


I think that technically crond is not required to monitor changes to crontab, even if in reality most implementations do, so I'd recommend a call to crontab -e afterwards to prod it. crontab -e honours the EDITOR variable if memory serves, so setting it to /bin/true for the moment should just force the crontab to be re-read.
True yet on any recent Linux system crond does monitor, and it certainly does on the OP's stated platform.
Only if you're root and want the script to run as root. That might not be desirable in the OPs case.
Not so, I have plenty of non-root entries in /etc/crontab. You 'merely' need sudo to append to the file. Anyway, as I stated, there is also /etc/cron.*/ but you also need to be root to write there.
O
Oleksii Kyslytsyn

It is an approach to incrementally add the cron job:

  ssh USER_NAME@$PRODUCT_IP nohup "echo '*/2 * * * * ping -c2 PRODUCT_NAME.com >> /var/www/html/test.html' | crontab -u USER_NAME -"

B
Brian Smith

Here is how to modify cron a entry without directly editing the cron file (which is frowned upon).

crontab -l -u <user> | sed 's/find/replace/g' | crontab -u <user> -

If you want to remove a cron entry, use this:

crontab -l -u <user> | sed '/find/d' | crontab -u <user> -

I realize this is not what gaurav was asking for, but why not have all the solutions in one place?


Can you give a fully working example that actually replaces a cron expression? I tried, but it's not working for me. Especially when the scheduled script's full path is used with forwards slashes.
N
Nikolay Mihaylov

I have written a crontab deploy tool in python: https://github.com/monklof/deploycron

pip install deploycron

Install your crontab is very easy, this will merge the crontab into the system's existing crontab.

from deploycron import deploycron
deploycron(content="* * * * * echo hello > /tmp/hello")

H
HeyMan

Another solution to add multiple scripts to crontab at once:

cat <<EOF | crontab -
* * * * * /bin/foo.sh
* * * * * /bin/gaga.sh
EOF

C
Chris Catignani

the easiest solution is to use echo with >> and then run crontab filename ex:

 ssh $HOST "echo \"* * * * * echo hello >> /var/spool/cron/crontabs/root\"; sleep 2; crontab /var/spool/cron/crontabs/root"