home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1993 #2
/
Image.iso
/
wp
/
dospel37.zip
/
SPEL_371.ZIP
/
SORTBIG.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-01-23
|
884b
|
50 lines
echo off
rem door J.A.M. Kleijn, Rotterdam.
if not %%(%2)==%%() goto begin
echo .
echo Batchfile for sorting big file with SPEL-S. Start this file from the
echo harddisk C: Sorting will be done on the ram disk D:. Make this
echo ramdisk D: with the dos program VDISK.SYS.
echo .
echo Usage: SORTBIG FILENAME DEPTH
echo .
goto einde
:begin
C:
SPEL-S %1 -DHLPTW
D:
C:SPEL-S C:SORTA.1 %2
COPY SORT.1 C:1
DEL SORT.1
C:SPEL-S C:SORTD.1 %2
COPY SORT.1 C:2
DEL SORT.1
C:SPEL-S C:SORTH.1 %2
COPY SORT.1 C:3
DEL SORT.1
C:SPEL-S C:SORTL.1 %2
COPY SORT.1 C:4
DEL SORT.1
C:SPEL-S C:SORTP.1 %2
COPY SORT.1 C:5
DEL SORT.1
C:SPEL-S C:SORTT.1 %2
COPY SORT.1 C:6
DEL SORT.1
C:SPEL-S C:SORTW.1 %2
COPY SORT.1 C:7
DEL SORT.1
C:
DEL *.1
COPY 1+2+3+4+5+6+7 SORT.1
del 1
del 2
del 3
del 4
del 5
del 6
del 7
echo Result written to c:SORT.1
:einde