home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / DOSUT-16.ZIP / SORTF.DOC < prev    next >
Text File  |  1984-06-06  |  1KB  |  43 lines

  1.  
  2. SORTF Command
  3. -------------
  4.  
  5. Purpose:   This command reads data from an ASCII file, sorts the
  6.        records, and writes the data to another file.
  7.  
  8. Format:    SORTF [d:][path]fname[.ext] [d:][path]fname[.ext] [/R][/+nnn]
  9.  
  10. Remarks:   Records read from the input file ending with a carriage
  11.        return and line feed are considered logical records and may
  12.        be up to 255 characters in length.
  13.  
  14.        The records are sorted into ascending ASCII character order
  15.        unless /R is supplied to reverse the order.
  16.  
  17.        The key is taken from the first character position, unless
  18.        the /+ operand is used to specify the location of the key
  19.        within the records. The position may be a value from one
  20.        to 255. The first 12 characters at that position are used
  21.        as the record key.
  22.  
  23.        For example, to sort a file in descending order with the
  24.        keys in position 10:
  25.  
  26.         SORTF TEST.DAT TEST.SRT /R/+10
  27.  
  28.        Depending on the amount of memory available, up to 40000
  29.        records, or a file of 16-Mb, may be sorted.
  30.  
  31.        The advantages of using SORTF instead of the SORT filter are:
  32.         - files larger than 63K may be sorted
  33.         - less time is required
  34.  
  35.        For best results, place the input file on the fastest
  36.        available drive, e.g. RAM disk.
  37.  
  38. Notes:       Written for the IBM PC using DOS 2.0 or later,
  39.        by Vernon Buerg. For public domain use.
  40.  
  41.        Version 1.4, June 6, 1984.
  42.  
  43.