home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / util2 / time(r).lzh / TIME(R).DOC < prev   
Text File  |  1986-06-21  |  2KB  |  51 lines

  1.         TIME(R) -- Multi-Purpose Time & Timer Facility           Page 1
  2.  
  3.  
  4.         Copyright (c) 1986 by Ryan Katri
  5.         ALL RIGHT RESERVED
  6.  
  7.         Description.
  8.  
  9.         TIME(R) is a program that is mainly for use in batch files.  It
  10.         provides three functions: Pause, Wait Until, and Loop.  Using
  11.         these three, you can pause your batch file for any number of
  12.         seconds, wait to continue execution until a certain time of day,
  13.         or loop for a specified number of seconds to see if an operator
  14.         is standing by to press a key before continuing.
  15.  
  16.         TIME(R) can drop an errorlevel to your batch file when using the
  17.         Loop or Wait Until options.  Thus, your batch file can decide
  18.         what operation to perform depending on the errorlevel it receives
  19.         from TIME(R).
  20.  
  21.  
  22.         Usage.
  23.  
  24.         TIME(R) is invoked by the command
  25.  
  26.              TIMER {options} [time] ...
  27.  
  28.         Three of the options require a time (either in seconds or a time
  29.         of day) to be given.
  30.  
  31.         The following options are:
  32.  
  33.         Option         Time      Abbrev  Function
  34.         -------------- --------- ------- ------------------------------
  35.         CONFIG                   C       Configure TIME(R)
  36.         HELP                     H or ?  Help and summary of commands
  37.         LOOP           Seconds   L       Loop for specified number of
  38.                                          seconds or until key pressed
  39.         PAUSE          Seconds   P       Pause for specified number of
  40.                                          seconds.
  41.         WAIT           Time of   W       Wait Until a certain time to
  42.                          Day             continue.
  43.  
  44.         Descriptions.
  45.  
  46.         CONFIG --  The configuration is not necessary, but allows
  47.                    customization for your specific needs.  Most of
  48.                    the questions are self-explanatory.
  49.  
  50.  
  51.         (to be continued!)