home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume8 / nsort / README < prev   
Encoding:
Text File  |  1989-10-07  |  357 b   |  7 lines

  1. nsort is a totally stripped down sort(1); it reads a file into memory,
  2. sorts it using merge sort, and writes the result out.  I wrote it to
  3. show that merge sort is fast -- sort(1) is documented as using a
  4. version of quicksort internally, and nsort beats it easily even when
  5. sort(1) is given enough memory to sort in memory.
  6. To compile it, just run make(1).
  7.