home *** CD-ROM | disk | FTP | other *** search
/ Compu-Fix / Compu-Fix.iso / tutorial / dos5tut / bpause.dat < prev    next >
Encoding:
Text File  |  1993-03-01  |  437 b   |  16 lines

  1. Explanation of the PAUSE command. It is 
  2. a BATCH command.
  3.  
  4. This command will let the batch file pause 
  5. until the user presses a key on the keyboard. 
  6.  
  7. Example:
  8.        After you type a screen with certain 
  9.        information, and you want your user 
  10.        to read this information, then add
  11.        a pause statement right after it:
  12.               Echo off
  13.               cls
  14.               type test.bat
  15.               pause
  16.