home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 205_01 / capitals.doc < prev    next >
Encoding:
Text File  |  1979-12-31  |  768 b   |  24 lines

  1. -------------------------------------------------------------------------------
  2.  CAPITALS
  3. -------------------------------------------------------------------------------
  4.  
  5. Format:
  6.  
  7.      capitals [< filename] 
  8.  
  9. Purpose:
  10.  
  11. CAPITALS is a text filter that capitalizes all letters in the standard input
  12. file before placing the result on standard output.
  13.  
  14. Examples:
  15.  
  16. Capitalize an entire text source file and print it on the printer.
  17.  
  18.      capitals <capitals.asm >prn 
  19.  
  20. Make a list of the current environmental settings, capitalize that list, and 
  21. append the list to the file named AUTOEXEC.BAT.
  22.  
  23.      set | capitals >> autoexec.bat
  24.