home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t283 / 1.img / UNZIPTXT.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-05-02  |  445 b   |  18 lines

  1. @echo off
  2. REM
  3. REM UNZIPTXT.BAT
  4. REM
  5. REM This BAT file can be executed from within any subdirectory to cause PKUNZIP
  6. REM to explode a TXT.ZIP file previously created using the ZIPTXT.BAT
  7. REM It will delete the TXT.ZIP file after extraction.
  8. REM
  9. pkunzip txt
  10. if errorlevel 1 goto errexit
  11. del txt.zip
  12. echo TXT.ZIP has been exploded and deleted.
  13. goto exit
  14. :errexit
  15. echo Error in execution of PKUNZIP (via UNZIPTXT.BAT).
  16. :exit
  17. echo on
  18.