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

  1. Explanation of the ECHO command. It is BATCH.
  2.  
  3. This command will turn the command echoing 
  4. off when used in a batch file.
  5.  
  6. Example:
  7.       The following short batch file will 
  8.       only clear the screen but nobody 
  9.       will see the command:
  10.           Echo off
  11.           cls
  12.