home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / GENUTIL / jar102x.exe / JARINCR.BAT < prev    next >
DOS Batch File  |  1997-09-18  |  374b  |  11 lines

  1. REM JAR program to incrementally backup one drive to another drive
  2. REM This program assumes that there is work space available on the hard drive
  3. if "%1" == "" goto param_err
  4. if "%2" == "" goto param_err
  5. JAR16 a -r -vvas -b0 -hba1 -w%1:\ -jt %2:\backup %1:\
  6. goto end
  7. :param_err
  8. REM Usage: JARINCR hard_drive_letter diskette_drive_letter
  9. REM        JARINCR C A
  10. :end
  11.