home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Doom Fever
/
Doom_Fever-1995_Maple_Media.iso
/
wad
/
zipwads.bas
< prev
next >
Wrap
BASIC Source File
|
1994-10-20
|
339b
|
18 lines
CHDIR "d:\"
OPEN "MULTI.LST" FOR INPUT AS #1
WHILE NOT EOF(1)
LINE INPUT #1, recdfile$
wshort$ = recdfile$
CHDIR "D:\TEMP"
sh1$ = "XCOPY D:\FILE_ID.DIZ"
sh2$ = "XCOPY E:\MULTI\" + wshort$ + "\*.*"
sh3$ = "PKZIP " + wshort$
sh4$ = "MOVE *.ZIP D:\FILES3"
SHELL sh1$
SHELL sh2$
SHELL sh3$
SHELL sh4$
KILL "D:\TEMP\*.*"
WEND