home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
swCHIP 1991 January
/
swCHIP_95-1.bin
/
utility
/
zsshl25
/
zuntar.ba_
/
ZUNTAR.BAT
Wrap
DOS Batch File
|
1995-01-05
|
699b
|
24 lines
@echo off
REM ZUNTAR -------------------------------------
REM Batch file to use TARX with the ZS Shell
REM %1 is the TAR 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 Untar the files to this directory
CALL TARX.BAT %1 *.*
REM Going to the default directory
CD..