home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / OSKBox.lzh / MAILBOX / CC / DOCS / cron.doc < prev    next >
Text File  |  1990-11-16  |  2KB  |  57 lines

  1. NAME:
  2.  
  3.      cron - Executes commands at specified times.
  4.  
  5. AUTHOR:
  6.  
  7.      Eric Williams  WD6CMU, 71336,1424
  8.  
  9. SYSTEM CONFIGURATION:
  10.  
  11.      OS9/68K, MW C v2.0
  12.  
  13. SYNTAX:
  14.  
  15.      cron
  16.  
  17. DESCRIPTION:
  18.  
  19.      The cron clock daemon executes commands at specified dates and times
  20. according to the instructions in the file /dd/misc/crontab.  cron should
  21. be run detached from the terminal (shell "&" option) usually with a low
  22. process priority.
  23.  
  24.      The file /dd/misc/crontab consists of (up to 24) lines of six fields
  25. each.  The fields are separated by spaces or tabs.  The first five are
  26. integer patterns that specify the minute (0-59), hour (0-23), day of the
  27. month (1-31), month of the year (1-12), and day of the week (0-6, with
  28. 0=Sunday).  Each of the patterns may contain:
  29.  
  30.      o  A number in the (respective) range indicated above
  31.  
  32.      o  Two numbers separated by a hyphen
  33.  
  34.      o  Any number of the above formats separated by commas
  35.  
  36.      o  An asterisk (*)
  37.  
  38.      The two numbers separated by a hyphen indicates a range of valid
  39. event times.  If the second value is larger than the first, the range is
  40. inclusive between the two values.  If the first value is larger than the
  41. second, the range is inclusive outside of the two values.  For example,
  42. the weekend can be specified by weekday 6-0.  An asterisk matches any
  43. legal value.
  44.  
  45.      The sixth field (up to the end of the line) is a string that is
  46. executed by the shell at the specified time(s).  Standard I/O is inherited
  47. from cron by default, so any redirection of I/O must be explicitly defined
  48. in this field.
  49.  
  50.      The crontab file is only read at the time cron is executed.  Any
  51. change to the file will require the cron task to be killed and restarted.
  52.  
  53. BUGS:
  54.  
  55.      Argument checking is not extensive and incorrect values in crontab
  56. could cause unpredictable results.
  57.