home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
pcmagazi
/
1991
/
11
/
proczip.bat
< prev
next >
Wrap
DOS Batch File
|
1991-01-08
|
262b
|
13 lines
@ECHO OFF
REM *** This is PROCZIP.BAT ***
MD TEMPZIP.$$$
CD TEMPZIP.$$$
PKUNZIP ..\%1
CALL PROCESS.BAT
REM If you are running DOS prior to 3.3, replace "CALL" in
REM the line above with "COMMAND /C"
DEL ..\%1
PKZIP -m ..\%1 *.*
CD ..
RD TEMPZIP.$$$