home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / GLEN / FREELAB.ZIP / TEXT.DOC < prev    next >
Text File  |  1985-08-20  |  2KB  |  62 lines

  1. TEXT, version 2.0, written by Walter Kennamer 74025,514.
  2. Alters the text within a file as specified in the command line.
  3.  
  4. USAGE: TEXT -args input output
  5.   where 'args' are any combination of the following:
  6.     f - TEXT acts as a filter
  7.     d - delete all white space 
  8.     l - delete all leading white space on each line
  9.     t - delete all trailing white space on each line
  10.     r - reduce all white space to a single blank space
  11.     u - convert to upper case
  12.     s - convert to lower case
  13.     q - do not alter text within single or double quotes
  14.  
  15. Examples
  16.  
  17. 1)     TEXT -tlu input output
  18.  
  19. deletes all leading and trailing white space and converts to upper case.
  20. If the ouptut file already exists, it will be overwritten. 
  21.  
  22.  
  23. 2)     TEXT -fts <input >output 
  24.  
  25. instructs the program to work as a filter deleting trailing white space 
  26. and converting to lower case.  
  27.  
  28.  
  29. Notes
  30.  
  31. Arguments may be entered in upper or lower case.
  32. Unidentified arguments are ignored.  
  33. Instructions are processed in the order listed above, except that 'q' 
  34.   (quote) affects all other instructions.  
  35. At least one argument (in addition to 'f') must always be entered.
  36.  
  37.  
  38. Filters
  39.  
  40. If the -f argument is entered, TEXT will act as a filter, taking its 
  41. input from stdin and writing its output to stdout.  You will normally want
  42. to redirect keyboard and console input and output when you select this 
  43. option.  For example,
  44.  
  45.      TEXT -fr <input >output
  46.  
  47. compresses all white space to a single space, writing to 'output.'  The
  48. redirection symbols ( '<' and '>' ) are important.  If you do not include
  49. them before your filenames, TEXT will display an error message.  See your
  50. DOS manual if you are not familiar with filters.
  51.  
  52. If you use TEXT as a filter, the input file must terminate with a 
  53. <ctrl>Z or TEXT will wait a very long time looking for one.  Output
  54. is guaranteed to terminate with a <ctrl>Z.  If you are not sure that 
  55. your input file terminates with a <ctrl>Z, use the MARKEOF program to
  56. be safe.
  57.  
  58.  
  59.  
  60.  
  61. 
  62. trl>Z.