home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 April
/
PCWorld_1999-04_cd.bin
/
Software
/
Servis
/
Jar102en
/
jar102x.exe
/
JARREST.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-09-18
|
278b
|
10 lines
REM JAR program to restore archives on a drive to another drive overwriting
if "%1" == "" goto param_err
if "%2" == "" goto param_err
JAR16 x -y %1:backup -o%2:\
goto end
:param_err
REM Usage: JARREST diskette_drive_letter hard_drive_letter
REM JARREST A C
:end