home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM
- REM UNZIPDOC.BAT
- REM
- REM This BAT file can be executed from within any subdirectory to cause PKUNZIP
- REM to explode a DOC.ZIP file previously created using the ZIPDOC.BAT
- REM
- pkunzip doc
- if errorlevel 1 goto errexit
- del doc.zip
- echo DOC.ZIP has been extracted and deleted.
- goto exit
- :errexit
- echo Error in execution of PKUNZIP (via UNZIPDOC.BAT).
- :exit
- echo on
-