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

操作系统开发

开发平台:

C/C++

  1. .TH CRON 8
  2. .SH NAME
  3. cron - clock daemon
  4. .SH SYNOPSIS
  5. fBcronfR
  6. .br
  7. .de FL
  8. .TP
  9. \fB\$1\fR
  10. \$2
  11. ..
  12. .de EX
  13. .TP 20
  14. \fB\$1\fR
  15. # \$2
  16. ..
  17. .SH EXAMPLES
  18. .EX "/usr/bin/cron" "Use absolute path in fI/etc/rcfR"
  19. .SH DESCRIPTION
  20. .PP
  21. fICronfR is clock daemon.  It is typically started up by including the
  22. command fI/usr/bin/cronfR in the fI/etc/rcfR file.  
  23. Once started, fIcronfR puts itself
  24. in the background, so no & is needed.  It runs forever, sleeping most of
  25. the time.  Once a minute it wakes up and examines fI/usr/lib/crontabfR to see
  26. if there is any work to do.  If there is, the work is done.  The entries of
  27. fI/usr/lib/crontabfR contain 6 elements each.  Some examples follow:
  28. .PP
  29. .nf
  30. .ta 0.10i 0.40i 0.70i 1.0i 1.3i 1.8i 4.0i
  31. fB Min Hr Dat Mo Day CommandfR
  32. * * * * * /usr/bin/date >/dev/log   #print date every minute
  33. 0 * * * * /usr/bin/date >/dev/log   #print date on the hour
  34. 30 4 * * 1-5 /bin/backup /dev/fd1      #do backup Mon-Fri at 0430
  35. 30 19 * * 1,3,5 /etc/backup /dev/fd1      #Mon, Wed, Fri at 1930
  36. 0 9 25 12 * /usr/bin/sing >/dev/log   #Xmas morning at 0900 only
  37. .fi
  38. .SH "SEE ALSO"
  39. .BR at (1).