home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / educatio / dosguide.zip / 9.DOC < prev    next >
Text File  |  1992-03-28  |  974b  |  34 lines

  1.  
  2. TYPE
  3.  
  4.       PURPOSE:
  5.            Displays the contents of a text file on the screen
  6.  
  7.  
  8.       NOTE:
  9.            Using the "type" command followed by a filename lets
  10.            you view the contents of a file without modifying it.
  11.  
  12.  
  13.       EXAMPLES:
  14.  
  15.                If you want to display the contents of a file
  16.                called sports, type the following command:
  17.  
  18.                             type sports
  19.  
  20.  
  21.                Hint: Hold down the CTRL key and hit the letter S
  22.                      to stop and start the screen while its scrolling.
  23.  
  24.                If you want to display a file that contains more
  25.                than one screen of contents, you could type the
  26.                following command to display the file's contents
  27.                one screen at a time:
  28.  
  29.                           type sports | more
  30.  
  31.                Note: Make sure MORE.COM is in your directory.
  32.                      MORE.COM comes with your DOS disks.
  33.  
  34.