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
  • 56,766
  • 33
  • 241
  • 361
fredrik
  • 8,747
  • 13
  • 64
  • 117

3 Answers3

20

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
  • 20,737
  • 10
  • 61
  • 64
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
  • 12,541
  • 11
  • 58
  • 84
dleon
  • 1
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