Crontab: Difference between revisions

From SaruWiki
Jump to navigation Jump to search
Line 1: Line 1:
==Crontab==
==Crontab==


To schedule a task you can use cron. Every user has it's own crontab if the user has the right to use it.
To schedule a task you can use cron. Every user has it's own crontab.
Also system has a crontab witch has 3 default entry's in /etc/crontab
Also system has a crontab witch has 3 default entry's in /etc/crontab



Revision as of 20:40, 17 May 2008

Crontab

To schedule a task you can use cron. Every user has it's own crontab. Also system has a crontab witch has 3 default entry's in /etc/crontab

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

you can schedule tasks directly in the 3 folders.

To see the current users crontab

>crontab -l

To see a users crontab

>crontab -u 'username' -l

To edit the current users crontab

>crontab -e

Now you can schedule your task

# +---------------- minute (0 - 59)
# |  +------------- hour (0 - 23)
# |  |  +---------- day of month (1 - 31)
# |  |  |  +------- month (1 - 12)
# |  |  |  |  +---- day of week (0 - 6) (Sunday=0 or 7)
# |  |  |  |  |
  *  *  *  *  *  command to be executed (full path to command/script)