home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 25 / SHORTIES / ETIMER.DOC < prev    next >
Encoding:
Text File  |  1988-01-01  |  1.3 KB  |  26 lines

  1. ET stands for elapsed time. It is a program to measure the time taken to
  2. run another program or a DOS command. For example, if you have a program
  3. called HANOI somewhere on your path, and you want to measure the time
  4. that it takes to execute, type
  5.   ET HANOI
  6. at the DOS prompt. You can include parameters after the program name as
  7. you would normally do. The timed program can ask you questions and wait
  8. for you to type responses, but of course this introduces variability into
  9. the elapsed time.
  10.  
  11. Two points to note:
  12.  
  13. 1/ ET runs your program in a sub-shell which means that it must create a
  14.    second version of COMMAND.COM. To do this it must be able to find
  15.    COMMAND.COM. You MUST have an environment variable COMSPEC which tells
  16.    ET where to find it, even if it is in the root directory. For example,
  17.      SET COMSPEC=C:\DOS\COMMAND.COM
  18.    If you have a floppy-only machine then of course you must have a floppy
  19.    containing COMMAND.COM in one of the drives.
  20.  
  21. 2/ ET is accurate to about 0.1 seconds. This seems to be a DOS limitation.
  22.    For good accuracy you should have both the program which you wish to
  23.    time and COMMAND.COM (as specified by COMSPEC) in RAM disk. ET itself can
  24.    even be on floppy disk, since of course it only starts measuring time
  25.    after it has been loaded into memory.
  26.