home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
win
/
prg
/
zs20
/
zunarj.ba_
/
ZUNARJ.BAT
Wrap
DOS Batch File
|
1994-11-20
|
967b
|
31 lines
@echo off
REM ZUNARJ -------------------------------------
REM Batch file to use ARJ with the ZS Shell
REM %1 is the ARJ file name
REM %2 is the ZIP file to create
REM
REM We use a temp directory named 897436
REM make sure you don' t use such a directory
REM to avoid a possible blanking...
REM --------------------------------------------
REM Goto the Zip Studio EXTERN directory
REM We use it to keep some space for the
REM command line. (Please check GO_ZSHL.BAT)
REM to adapt it to your configuration).
CALL GO_ZSHL.BAT
REM Build a temp subdirectory
MD 897436
CD 897436
REM Unarj the files to this directory
ARJ x %1 *.*
REM Going to the main directory
CD..
REM Rezip the files to the destname$
PKZIP -a-p-r %2 897436\*.*
REM Deleting the temp directory ----------------
REM Available with MSDOS 6.0, for the previous
REM release use DEL *., DEL *.? .. and so on.
REM --------------------------------------------
DELTREE /Y 897436