CRON.8
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. CRON(8)                   Minix Programmer's Manual                    CRON(8)
  2. NAME
  3.      cron - clock daemon
  4. SYNOPSIS
  5.      cron
  6. EXAMPLES
  7.      /usr/bin/cron       # Use absolute path in /etc/rc
  8. DESCRIPTION
  9.      Cron is clock daemon.  It  is  typically  started  up  by  including  the
  10.      command /usr/bin/cron in the /etc/rc file. Once started, cron puts itself
  11.      in the background, so no & is needed.  It runs forever, sleeping most  of
  12.      the time.  Once a minute it wakes up and examines /usr/lib/crontab to see
  13.      if there is any work to do.  If there is, the work is done.  The  entries
  14.      of /usr/lib/crontab contain 6 elements each.  Some examples follow:
  15.       Min Hr Dat Mo Day   Command
  16.        *  *   *   *  *    /usr/bin/date >/dev/log   #print date every minute
  17.        0  *   *   *  *    /usr/bin/date >/dev/log   #print date on the hour
  18.       30  4   *   * 1-5   /bin/backup /dev/fd1      #do backup Mon-Fri at 0430
  19.       30 19   *   * 1,3,5 /etc/backup /dev/fd1      #Mon, Wed, Fri at 1930
  20.        0  9  25  12  *    /usr/bin/sing >/dev/log   #Xmas morning at 0900 only
  21. SEE ALSO
  22.      at(1).
  23.                                                                              1