home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 July / IMM0795.ISO / share / tools / zipstudi / zunarc.ba_ / ZUNARC.BAT
DOS Batch File  |  1995-01-05  |  654b  |  22 lines

  1. @echo off
  2. REM ZUNARC -------------------------------------
  3. REM Batch file to use PKUNPAK with the ZS Shell
  4. REM %1 is the ARC file name
  5. REM %2 is the ZIP file to create
  6. REM 
  7. REM We use a temp directory named 897436
  8. REM make sure you don' t use such a directory
  9. REM to avoid a possible blanking...
  10. REM --------------------------------------------
  11. REM Goto the Zip Studio EXTERN directory
  12. REM We use it to keep some space for the
  13. REM command line. (Please check GO_ZSHL.BAT)
  14. REM to adapt it to your configuration).
  15. CALL GO_ZSHL.BAT
  16. REM Build a temp subdirectory
  17. MD 897436
  18. CD 897436
  19. REM Unarc the files to this directory
  20. PKUNPAK %1 *.*
  21.  
  22.