home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / a / arj239d.zip / ARJREST.BAT < prev    next >
DOS Batch File  |  1993-02-06  |  278b  |  10 lines

  1. REM ARJ program to restore archives on a drive to another drive overwriting
  2. if "%1" == "" goto param_err
  3. if "%2" == "" goto param_err
  4. ARJ x -vv -y %1:backup %2:\
  5. goto end
  6. :param_err
  7. REM Usage: ARJREST diskette_drive_letter hard_drive_letter
  8. REM        ARJREST A C
  9. :end
  10.