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

  1. -------------------------------------------------------------------------------
  2.  LOWCASE
  3. -------------------------------------------------------------------------------
  4.  
  5. Format:
  6.  
  7.      lowcase [< filename] 
  8.  
  9. Purpose:
  10.  
  11. LOWCASE is a text filter that takes the standard input and converts all 
  12. letters to lowercase before placing the result on standard output.
  13.  
  14. Examples:
  15.  
  16. Display the current directory in lowercase.
  17.  
  18.      dir | lowcase
  19.  
  20. Display the contents of the file named lowcase.asm on the screen in lowercase.
  21.  
  22.      lowcase < lowcase.asm
  23.