home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April (Special)
/
Chip-Special_1997-04_cd.bin
/
sonstige
/
arj250
/
arjrest.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-30
|
278b
|
10 lines
REM ARJ program to restore archives on a drive to another drive overwriting
if "%1" == "" goto param_err
if "%2" == "" goto param_err
ARJ x -vv -y %1:backup %2:\
goto end
:param_err
REM Usage: ARJREST diskette_drive_letter hard_drive_letter
REM ARJREST A C
:end