CALENDAR.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. CALENDAR(1)               Minix Programmer's Manual                CALENDAR(1)
  2. NAME
  3.      calendar - reminder service
  4. SYNOPSIS
  5.      calendar [-] [-r]
  6. OPTIONS
  7.      -    Work for every user and send mail to him
  8.      -r   Restrict multiple execution on the same day
  9. EXAMPLES
  10.      calendar            # Check calendar file in current directory
  11.      calendar            # Normary used under the control of cron(8)
  12.      calendar -r         #  Normary used in /etc/rc file
  13. DESCRIPTION
  14.      Basically calendar program consults the  file  calendar  in  the  current
  15.      directory  and  display  lines  which contain today's or tomorrow's date.
  16.      Month-day formats such as '12/25',  'Dec.  25',  'december  25',  '*/25',
  17.      '12/*',  '*/*'  are  recognized.   The asterisk means 'all' days or 'all'
  18.      months.  On weekends 'tomorrow' extends through next Monday  without  any
  19.      consideration  about  holidays.   To  prevent  ambiguity, the formats '25
  20.      Dec.' and '25/12' are not recognized.
  21.      When an argument - is present, calendar works for all users with  a  file
  22.      calendar  in  their login directories and sends them mail.  Normally this
  23.      is done daily under the control of cron.
  24.      The -r option does its the same job as - option, but touches the calendar
  25.      to prevents further access on the same day.  Normally this is done in the
  26.      /etc/rc file on a machine  which may be booted several times in one day.
  27. SEE ALSO
  28.      cron(8).
  29.                                                                              1