home *** CD-ROM | disk | FTP | other *** search
/ Computer Installation Guide - Dragon Clan Series / CD2.iso / ZIP / ACB / acb200c / ZIP2ACB.BAT < prev   
Encoding:
DOS Batch File  |  1997-04-24  |  374 b   |  16 lines

  1. @echo off
  2. if exist %2.zip goto found
  3. echo Error parameters
  4. echo zip2acb (B/b/u) (name of the *.zip file)
  5. echo Example:  ZIP2ACB u tst      (tst.zip  convert into  tst.acb)
  6. goto end
  7. :found
  8. md tmp$ >nul
  9. pkunzip -d %2 tmp$ >nul
  10. ACB %1 %2 tmp$\*.*
  11. echo ----!!! COMPARISON !!!----
  12. dir %2.*
  13. echo ---------------------------
  14. del %2.zip >nul
  15. deltree /Y tmp$ >nul
  16. :end