ã¤ãæè¿ç¥ã£ãcrontabã®ãã¯ã
cronã®èªæºãã®ãªã·ã£ç¥è©±ã®æéã®ç¥ã¯ããã¹(chronos/kronos)ã ã£ãã¨ã¯ãã¸ã«ç¥ããªãã£ãã
èªæºã¯å¥ã«ãã¦crontabãã¯ãã¨ããã®ããããã§ããããããªæãã«@rebootã¨ããã¨OSèµ·åæã« test.pl ãå®è¡ãã¦ãããã/etc/rc.localã«æ¸ãã¦ãããããªãã®ã§ããã
$ crontab -l @reboot /home/user/test.pl
http://en.wikipedia.org/wiki/Cron#Predefined_scheduling_definitions
Entry | Description | Equivalent To |
---|---|---|
@yearly (or @annually) | Run once a year | 0 0 1 1 * |
@monthly | Run once a month | 0 0 1 * * |
@weekly | Run once a week | 0 0 * * 0 |
@daily (or @midnight) | Run once a day | 0 0 * * * |
@hourly | Run once an hour | 0 * * * * |
@reboot | Run at startup |