home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / make / cmake / samples / cmddef / sortsum.bat < prev    next >
Encoding:
DOS Batch File  |  1991-11-16  |  157 b   |  7 lines

  1. rem sortsum.bat - Batch program to combine two text files and
  2. rem               sort the result
  3. type %1 >temp
  4. type %2 >>temp
  5. sort <temp >%3
  6. erase temp
  7.