home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / batch / sputils.zip / STRIPCOL.DOC < prev    next >
Text File  |  1991-01-06  |  2KB  |  50 lines

  1. Strip Columns   version 1.1 (C) SPETER SOFTWARE,   January 1991.
  2.  
  3. This program will strip the specified column range from the given input file
  4. and write the result to the given output file.
  5.  
  6. The program was written in Borland's Turbo Pascal 5.5
  7.  
  8. Usage:
  9. ------
  10. 1:   STRIPCOL [/h]
  11.  
  12.         Output a help screen.
  13.           /h       (optional)
  14.  
  15. 2:   STRIPCOL start-col end-col in-file out-file
  16.  
  17.         Read the contents of the input file "in-file", delete any characters
  18.         in the specified column range, and then write the result to the output
  19.         file.
  20.             start-col     a number between 1 and 254 and less than "end-col";
  21.             end-col       a number between 2 and 255 and more than "start-col";
  22.             in-file       must be an existing file (name can include a path);
  23.                           lines in the input file (in-file) must be less than
  24.                           256 characters long
  25.             out-file      must be an valid DOS file-name (can include a path).
  26.  
  27. Example:
  28. ---------
  29.      stripstr 10 20 infile outfile
  30.  
  31. Deletes from every line of "infile", every character from the 10th, up to and
  32. including the 20th (or the end of line if there are less than 20 characters on
  33. the line), and writes the result in "outfile".
  34.  
  35. Correspondence:
  36. ---------------
  37.     Please address any comments to:
  38.  
  39.         Stephen Peter
  40.  
  41.     INTERNET:
  42.         steve@cad0.arch.unsw.oz.au
  43.  
  44.     POST:
  45.         SPETER SOFTWARE
  46.         P.O. BOX 643
  47.         LANE COVE
  48.         NSW  2066
  49.         AUSTRALIA
  50.