home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tools
/
make
/
cmake
/
samples
/
cmddef
/
sortsum.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-11-16
|
157 b
|
7 lines
rem sortsum.bat - Batch program to combine two text files and
rem sort the result
type %1 >temp
type %2 >>temp
sort <temp >%3
erase temp