Archiv für den Tag: 16. November 2015

shell: Nicknames für crontab Zeitfolgen

Die Zeitangaben in der crontab-Datei können mit Nicknames abgekürzt werden:

  @reboot    :    Run once after reboot.
       @yearly    :    Run once a year, ie.  "0 0 1 1 *".
       @annually  :    Run once a year, ie.  "0 0 1 1 *".
       @monthly   :    Run once a month, ie. "0 0 1 * *".
       @weekly    :    Run once a week, ie.  "0 0 * * 0".
       @daily     :    Run once a day, ie.   "0 0 * * *".
       @hourly    :    Run once an hour, ie. "0 * * * *".

statt:

0 * * * * root python /root/doit.py
@hourly   root python /root/doit.py