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

操作系统开发

开发平台:

WINDOWS

  1. AT(1)                     Minix Programmer's Manual                      AT(1)
  2. NAME
  3.      at, atrun - execute commands at a later time
  4. SYNOPSIS
  5.      at time [month day] [file]
  6. EXAMPLES
  7.      at 2315 Jan 31 myfile
  8.                          # Myfile executed Jan 31 at 11:15 pm
  9.      at 0900             # Job input read from stdin
  10.      at 0711 4 29        # Read from stdin, exec on April 29
  11. DESCRIPTION
  12.      At prepares a file to be executed later at the specified time by creating
  13.      a  special  entry  in  /usr/spool/at. The program atrun should be started
  14.      periodically, for example, every minute by cron.  Atrun checks to see  if
  15.      any files in /usr/spool/at should now be run, and if so, it runs them and
  16.      then puts them in /usr/spool/at/past.  The name of the  file  created  in
  17.      /usr/spool/at by at is YY.DDD.HHMM.UU (where YY, DDD, HH, and MM give the
  18.      time to execute and UU is a unique number).  Note that when  the  command
  19.      runs,  it  will  not  be  able to use stdin or stdout unless specifically
  20.      redirected.  In the first example above, it might  be  necessary  to  put
  21.      >/dev/log  on  some  lines in the shell script myfile. The same holds for
  22.      the commands typed directly to at.
  23. SEE ALSO
  24.      cron(8).
  25.                                                                              1