home *** CD-ROM | disk | FTP | other *** search
/ Lion Share / lionsharecd.iso / utils_mz / v10n11.zip / PROCZIP.BAT < prev    next >
DOS Batch File  |  1991-01-08  |  262b  |  13 lines

  1. @ECHO OFF
  2. REM *** This is PROCZIP.BAT ***
  3. MD TEMPZIP.$$$
  4. CD TEMPZIP.$$$
  5. PKUNZIP ..\%1
  6. CALL PROCESS.BAT
  7. REM If you are running DOS prior to 3.3, replace "CALL" in
  8. REM the line above with "COMMAND /C"
  9. DEL ..\%1
  10. PKZIP -m ..\%1 *.*
  11. CD ..
  12. RD TEMPZIP.$$$
  13.