home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM
- REM UNZIPTXT.BAT
- REM
- REM This BAT file can be executed from within any subdirectory to cause PKUNZIP
- REM to explode a TXT.ZIP file previously created using the ZIPTXT.BAT
- REM It will delete the TXT.ZIP file after extraction.
- REM
- pkunzip txt
- if errorlevel 1 goto errexit
- del txt.zip
- echo TXT.ZIP has been exploded and deleted.
- goto exit
- :errexit
- echo Error in execution of PKUNZIP (via UNZIPTXT.BAT).
- :exit
- echo on
-