home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CM100EXE.ARJ / CM100EXE.ZIP / SAMPLES / CMDDEF / SORTSUM.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-11-17  |  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.