home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM
- REM ZIPTXT.BAT
- REM
- REM This BAT file can be executed from within any subdirectory to cause PKZIP
- REM to implode every *.TXT in the current directory into a single file called
- REM TXT.ZIP using the -m parameter to move the original files into TXT.ZIP.
- REM Use the UNZIPTXT.BAT file when necessary.
- REM
- pkzip txt *.txt -m -ex
- if errorlevel 1 goto errexit
- dir
- echo TXT.ZIP has been successfully created and original files deleted.
- goto exit
- :errexit
- echo Error in execution of PKZIP (via ZIPTXT.BAT).
- :exit
- echo on
-