11

What's the preferred method to insert an entry into /etc/crontab unless it exists, preferably using a one-liner?

Here's my example entry I wish to place into /etc/crontab unless it already exists in there.

*/1 *  *  *  * some_user python /mount/share/script.py

I'm on CentOS 6.6 and so far I have this:

if grep "*/1 *  *  *  * some_user python /mount/share/script.py" /etc/crontab; then echo "Entry already in crontab"; else echo "*/1 *  *  *  * some_user python /mount/share/script.py" >> /etc/crontab; fi 
rogerdpack
  • 62,887
  • 36
  • 269
  • 388
fredrik
  • 9,631
  • 16
  • 72
  • 132

3 Answers3

23

You can do this:

grep 'some_user python /mount/share/script.py' /etc/crontab || echo '*/1 *  *  *  * some_user python /mount/share/script.py' >> /etc/crontab

If the line is absent, grep will return 1, so the right hand side of the or || will be executed.

arco444
  • 22,002
  • 12
  • 63
  • 67
0

You can do it like this:

if grep "\*\/5 \* \* \* \* /usr/local/bin/test.sh" /var/spool/cron/root; then echo "Entry already in crontab"; else echo "*/5 * * * * /usr/local/bin/test.sh" >>  /var/spool/cron/root; fi

Or even more terse:

grep '\*\/12 \* \* \* \* /bin/yum makecache fast' /var/spool/cron/root \
    || echo '*/12 * * * * /bin/yum makecache fast' >> /var/spool/cron/root
Jay Taylor
  • 13,185
  • 11
  • 60
  • 85
dleon
  • 1
  • You should not write to /var/spool/cron/root directly, it is specifically stated in the documentation, you have to go through crontab. The files in /var/spool/cron must include only properly formatted lines, which crontab checks before committing to disk. – Wadih M. Oct 10 '22 at 15:20
0

Factoring out the filename & using the q & F options file="/etc/crontab"; grep -qF "some_user python /mount/share/script.py" "$file" || echo "*/1 * * * * some_user python /mount/share/script.py"

karpada
  • 175
  • 1
  • 7