home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff304.lzh / Multic / multic.doc < prev    next >
Text File  |  1990-01-10  |  1KB  |  37 lines

  1.                      Multic : multi-column text formatter
  2.                               by Joel Swank 
  3.                                  1/3/89
  4.  
  5. FUNCTION:
  6.     Format a single column of input into multiple side by side columns.
  7.  
  8. USAGE: multic: [[-cn] [-ln] [-pn] [-sn] [-gn] file ...] ...
  9.  
  10. OPTIONS:
  11.  
  12.       -cn   Format into n column output. Default is 2. Maximum is 9.
  13.             Minimum is 1.
  14.  
  15.       -ln   Output line is n chatacters. Default is 80. Maximum is 999.
  16.             Minimum is 20.
  17.  
  18.       -pn   Output page is n lines long. Default is 60. Maximum is 500.
  19.             Minimum is 20.
  20.  
  21.       -sn   Skip n lines between pages. Default is 0. Maximum is 100.
  22.             Minimum is 0.
  23.  
  24.       -gn   Skip n spaces between columns. Default is 0. Maximum is 100.
  25.             Minimum is 0.
  26.  
  27. OPERATION:
  28.    Multiple occurences of flags and filenames can be specified. Each
  29. file is formatted according to the most recently set values. All output
  30. is to stdout. If -s is left at zero, a formfeed will be output between
  31. pages. Input lines are padded to fill the output column. The size of
  32. an output column is calculated by the following formula:
  33.    colsize = (linesize - (gap * (columns -1))/columns
  34. where columns is the -c value, gap is the -g value, and linesize is the
  35. -l value. Input lines longer than the calculated column size are wraped
  36. to the next line in that column.
  37.