home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / LEFTJUST.ZIP / LEFTJUST.δ < prev   
Encoding:
Text File  |  1988-08-27  |  1012 b   |  20 lines

  1. LEFTJUST.EXE
  2.  
  3. FUNCTION:  The purpose of this program is to left justify ASCII text files.
  4.            That is: remove a border consisting of blanks (ASCII character
  5.            32) from ASCII text files.  The program also removes form feeds
  6.            (ASCII 12) as they make it more difficult to identify the width
  7.            of the border.  An option is to remove ONLY (1) the excess
  8.            left border spaces (automargin adjust), or (2) remove left
  9.            border spaces up to a set number.  Version 1.2, 8-26-88.
  10.  
  11. USAGE:     LEFTJUST [in_filename] [out_filename] {/m{#}}
  12.  
  13. NOTES:     The /m option allows you to automatically remove an "excess
  14.            border" of left-side spaces in the ASCII file.  For example, if
  15.            ALL lines have at least 5 left spaces, then EVERY line will have
  16.            those (and only those) 5 spaces removed.  If a number is
  17.            specified after the /M option (e.g., "/m4"), then every line
  18.            will have UP TO 4 spaces removed.
  19.  
  20. «═»